about summary refs log tree commit diff
path: root/pkgs/development/idris-modules/webgl.nix
diff options
context:
space:
mode:
authorMárton Boros <martonboros@gmail.com>2018-03-16 12:40:17 +0100
committerMárton Boros <martonboros@gmail.com>2018-03-20 07:16:21 +0100
commit23ee7c9d8d510a781c9796d392e968537d254883 (patch)
tree9ffcf98ac7abb04d6c0bf083e93409f8a6b49a8b /pkgs/development/idris-modules/webgl.nix
parentcf65d477fd9e92823c64a44521835c82e122c2f2 (diff)
downloadnixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar.gz
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar.bz2
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar.lz
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar.xz
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.tar.zst
nixlib-23ee7c9d8d510a781c9796d392e968537d254883.zip
idrisPackages: add packages
Diffstat (limited to 'pkgs/development/idris-modules/webgl.nix')
-rw-r--r--pkgs/development/idris-modules/webgl.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/idris-modules/webgl.nix b/pkgs/development/idris-modules/webgl.nix
new file mode 100644
index 000000000000..3793a812e57f
--- /dev/null
+++ b/pkgs/development/idris-modules/webgl.nix
@@ -0,0 +1,28 @@
+{ build-idris-package
+, fetchFromGitHub
+, prelude
+, idrisscript
+, lib
+, idris
+}:
+build-idris-package  {
+  name = "webgl";
+  version = "2017-05-08";
+
+  idrisDeps = [ prelude idrisscript ];
+
+  src = fetchFromGitHub {
+    owner = "pierrebeaucamp";
+    repo = "idris-webgl";
+    rev = "1b4ee00a06b0bccfe33eea0fa8f068cdae690e9e";
+    sha256 = "097l2pj8p33d0n3ryb8y2vp0n5isnc8bkdnad3y6raa9z1xjn3d6";
+  };
+
+  meta = {
+    description = "Idris library to interact with WebGL";
+    homepage = https://github.com/pierrebeaucamp/idris-webgl;
+    license = lib.licenses.asl20;
+    maintainers = [ lib.maintainers.brainrape ];
+    inherit (idris.meta) platforms;
+  };
+}