nixpkgs/pkgs/development/idris-modules/pfds.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
573 B
Nix
Raw Normal View History

2018-03-16 12:40:17 +01:00
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
2022-02-14 23:08:24 +01:00
pname = "pfds";
2018-03-16 12:40:17 +01:00
version = "2017-09-25";
2018-07-02 05:18:21 +02:00
idrisDeps = [ contrib ];
2018-03-16 12:40:17 +01:00
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";
2018-03-16 12:40:17 +01:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}