summary refs log tree commit diff
path: root/pkgs/development/idris-modules/derive.nix
blob: a0bc4d6b96874a722c7d1de00b305403e1557d4d (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
, contrib
, pruviloj
, lib
}:
build-idris-package  {
  name = "derive";
  version = "2018-02-15";

  idrisDeps = [ contrib pruviloj ];

  src = fetchFromGitHub {
    owner = "davlum";
    repo = "derive-all-the-instances";
    rev = "2c8956807bd094ba33569227de921c6726401c42";
    sha256 = "0l7263s04r52ql292vnnx2kngld6s1dipmaz5na7m82lj9p4x17y";
  };

  meta = {
    description = "Type class deriving with elaboration reflection";
    homepage = https://github.com/davlum/derive-all-the-instances;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}