summary refs log tree commit diff
path: root/pkgs/development/idris-modules/hezarfen.nix
blob: 712508220a6b23cfb76ed948afac3eb8eccdca73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ build-idris-package
, fetchFromGitHub
, prelude
, base
, lib
, idris
}:
build-idris-package  {
  name = "hezarfen";
  version = "2018-02-03";

  idrisDeps = [ prelude base ];

  src = fetchFromGitHub {
    owner = "joom";
    repo = "hezarfen";
    rev = "079884d85619cd187ae67230480a1f37327f8d78";
    sha256 = "0z4150gavpx64m3l0xbjjz9dcir7zij9hvd69k98zvhw7i27b1xp";
  };

  meta = {
    description = "a 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 ];
    inherit (idris.meta) platforms;
  };
}