summary refs log tree commit diff
path: root/pkgs/development/idris-modules/derive.nix
blob: 7f3164f3160d096bf2c27efb51ed2799ba126950 (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-07-02";

  idrisDeps = [ contrib pruviloj ];

  src = fetchFromGitHub {
    owner = "david-christiansen";
    repo = "derive-all-the-instances";
    rev = "0a9a5082d4ab6f879a2c141d1a7b645fa73fd950";
    sha256 = "06za15m1kv9mijzll5712crry4iwx3b0fjv76gy9vv1p10gy2g4m";
  };

  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 ];
  };
}