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

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

27 lines
614 B
Nix
Raw Normal View History

2018-03-16 14:40:17 +03:00
{ build-idris-package
, fetchFromGitHub
, effects
, test
, lib
}:
build-idris-package {
2022-02-15 01:08:24 +03:00
pname = "containers";
2018-03-16 14:40:17 +03:00
version = "2017-09-10";
2018-07-02 06:18:21 +03:00
idrisDeps = [ effects test ];
2018-03-16 14:40:17 +03:00
src = fetchFromGitHub {
owner = "jfdm";
repo = "idris-containers";
rev = "fb96aaa3f40faa432cd7a36d956dbc4fe9279234";
sha256 = "0vyjadd9sb8qcbzvzhnqwc8wa7ma770c10xhn96jsqsnzr81k52d";
};
meta = {
description = "Various data structures for use in the Idris Language.";
homepage = "https://github.com/jfdm/idris-containers";
2018-03-16 14:40:17 +03:00
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}