1{
2 build-idris-package,
3 fetchFromGitHub,
4 idrisscript,
5 lib,
6}:
7build-idris-package {
8 pname = "webgl";
9 version = "2017-05-08";
10
11 idrisDeps = [ idrisscript ];
12
13 src = fetchFromGitHub {
14 owner = "pierrebeaucamp";
15 repo = "idris-webgl";
16 rev = "1b4ee00a06b0bccfe33eea0fa8f068cdae690e9e";
17 sha256 = "097l2pj8p33d0n3ryb8y2vp0n5isnc8bkdnad3y6raa9z1xjn3d6";
18 };
19
20 meta = {
21 description = "Idris library to interact with WebGL";
22 homepage = "https://github.com/pierrebeaucamp/idris-webgl";
23 license = lib.licenses.asl20;
24 maintainers = [ lib.maintainers.brainrape ];
25 };
26}