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

  idrisDeps = [ contrib ];

  src = fetchFromGitHub {
    owner = "jheiling";
    repo = "idris-extras";
    rev = "20e79087043ddb00301cdc3036964a2b1c5b1c5f";
    sha256 = "0j34a7vawrkc7nkwwnv6lsjjdcr00d85csjw06nnbh8rj4vj5ps0";
  };

  meta = {
    description = "Some useful functions for Idris";
    homepage = https://github.com/jheiling/idris-extras;
    license = lib.licenses.unlicense;
    maintainers = [ lib.maintainers.brainrape ];
  };
}