1{
2 build-idris-package,
3 fetchFromGitHub,
4 lib,
5}:
6build-idris-package {
7 pname = "hezarfen";
8 version = "2018-02-03";
9
10 src = fetchFromGitHub {
11 owner = "joom";
12 repo = "hezarfen";
13 rev = "079884d85619cd187ae67230480a1f37327f8d78";
14 sha256 = "0z4150gavpx64m3l0xbjjz9dcir7zij9hvd69k98zvhw7i27b1xp";
15 };
16
17 meta = {
18 description = "Theorem prover for intuitionistic propositional logic in Idris, with metaprogramming features";
19 homepage = "https://github.com/joom/hezarfen";
20 license = lib.licenses.mit;
21 maintainers = [ lib.maintainers.brainrape ];
22 };
23}