summary refs log tree commit diff
path: root/pkgs/development/idris-modules/jheiling-js.nix
blob: 425acceb4e6ce4c2c2efcb2dc8afcdfd5e836c31 (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
{ build-idris-package
, fetchFromGitHub
, contrib
, jheiling-extras
, lib
}:
build-idris-package  {
  pname = "jheiling-js";
  version = "2016-03-09";

  ipkgName = "js";
  idrisDeps = [ contrib jheiling-extras ];

  src = fetchFromGitHub {
    owner = "jheiling";
    repo = "idris-js";
    rev = "59763cd0c9715a9441931ae1077e501bb2ec6020";
    sha256 = "1mvpxwszh56cfrf509qiadn7gp2l4syanhvdq6v1br0y03g8wk9v";
  };

  meta = {
    description = "Js library for Idris";
    homepage = "https://github.com/jheiling/idris-js";
    license = lib.licenses.unlicense;
    maintainers = [ lib.maintainers.brainrape ];
  };
}