summary refs log tree commit diff
path: root/pkgs/development/idris-modules/refined.nix
blob: c841f633b41fe4a96939ce5b423cbeb1f718d382 (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
{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package  {
  pname = "refined";
  version = "2017-12-28";

  ipkgName = "idris-refined";

  src = fetchFromGitHub {
    owner = "janschultecom";
    repo = "idris-refined";
    rev = "e21cdef16106a77b42d193806c1749ba6448a128";
    sha256 = "1am7kfc51p2zlml954v8cl9xvx0g0f1caq7ni3z36xvsd7fh47yh";
  };

  meta = {
    description = "Port of Scala/Haskell Refined library to Idris";
    homepage = "https://github.com/janschultecom/idris-refined";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.brainrape ];
  };
}