depot/pkgs/development/idris-modules/hezarfen.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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 ];
};
}