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

  idrisDeps = [ effects test ];

  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";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.brainrape ];
  };
}