summary refs log tree commit diff
path: root/pkgs/development/idris-modules/snippets.nix
blob: 9dc2dd3f8e23473510b7e8ebd023b6911aa30812 (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
{ build-idris-package
, fetchFromGitHub
, prelude
, contrib
, lib
, idris
}:
build-idris-package  {
  name = "snippets";
  version = "2018-03-17";

  idrisDeps = [ prelude contrib ];

  src = fetchFromGitHub {
    owner = "palladin";
    repo = "idris-snippets";
    rev = "c26d6f5ffc1cc0456279f5ac74fec5af8c09025e";
    sha256 = "1vwyzck6yan3wifsyj02ji9l6x9rs2r02aybm90gl676s2x4mhjn";
  };

  meta = {
    description = "Collection of Idris snippets";
    homepage = https://github.com/palladin/idris-snippets;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}