blob: a94526d6b0d2a4154c961d9f26baf287b91f670c (
plain)
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
28
29
30
31
32
|
{
build-idris-package,
fetchFromGitHub,
contrib,
jheiling-extras,
jheiling-js,
lib,
}:
build-idris-package {
pname = "electron";
version = "2016-03-07";
idrisDeps = [
contrib
jheiling-extras
jheiling-js
];
src = fetchFromGitHub {
owner = "jheiling";
repo = "idris-electron";
rev = "f0e86f52b8e5a546a2bf714709b659c1c0b04395";
sha256 = "1rpa7yjvfpzl06h0qbk54jd2n52nmgpf7nq5aamcinqh7h5gbiwn";
};
meta = {
description = "Electron bindings for Idris";
homepage = "https://github.com/jheiling/idris-electron";
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.brainrape ];
};
}
|