summary refs log tree commit diff
path: root/pkgs/development/idris-modules/pfds.nix
blob: d82ec49018565cfa42e165ff4827b686949b5068 (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
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package  {
  name = "pfds";
  version = "2017-09-25";

  idrisDeps = [ contrib ];

  src = fetchFromGitHub {
    owner = "timjb";
    repo = "idris-pfds";
    rev = "9ba39348adc45388eccf6463855f42b81333620a";
    sha256 = "0jbrwdpzg5hgmkfk2kj5y8lgaynl79h48qdvkl1glypfh392w35f";
  };

  meta = {
    description = "Purely functional data structures in Idris";
    homepage = "https://github.com/timjb/idris-pfds";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}