summary refs log tree commit diff
path: root/pkgs/development/idris-modules/logic.nix
blob: 342a84882cd916cbbf6329341e3a8d6deb7ee2bb (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
29
30
31
{ build-idris-package
, fetchFromGitHub
, prelude
, bifunctors
, lib
, idris
}:
build-idris-package  {
  name = "logic";
  version = "2016-12-02";

  idrisDeps = [ prelude bifunctors ];

  src = fetchFromGitHub {
    owner = "yurrriq";
    repo = "idris-logic";
    rev = "e0bed57e17fde1237fe0358cb77b25f488a04d2f";
    sha256 = "0kvn1p0v71vkwlchf20243c47jcfid44w5r0mx4dydijq9gylxfz";
  };

  # tests fail
  doCheck = false;

  meta = {
    description = "Propositional logic tools, inspired by the Coq standard library";
    homepage = https://github.com/yurrriq/idris-logic;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}