mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
22 lines
584 B
Nix
22 lines
584 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
pname = "hezarfen";
|
|
version = "2018-02-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joom";
|
|
repo = "hezarfen";
|
|
rev = "079884d85619cd187ae67230480a1f37327f8d78";
|
|
sha256 = "0z4150gavpx64m3l0xbjjz9dcir7zij9hvd69k98zvhw7i27b1xp";
|
|
};
|
|
|
|
meta = {
|
|
description = "Theorem prover for intuitionistic propositional logic in Idris, with metaprogramming features";
|
|
homepage = "https://github.com/joom/hezarfen";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|