about summary refs log tree commit diff
path: root/pkgs/development/idris-modules
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2016-09-29 16:16:10 +0200
committerGitHub <noreply@github.com>2016-09-29 16:16:10 +0200
commit57df34374500a0c4f1f5c1a815db2a9b38ed433f (patch)
tree7f952706eeddd49dc6018894029ae1c6572118ab /pkgs/development/idris-modules
parentd286a68887e982c4b59b593861a6f465784acc96 (diff)
parent0b532b7d2a13770888e2a4f1187d58df990ca514 (diff)
downloadnixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar.gz
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar.bz2
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar.lz
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar.xz
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.tar.zst
nixlib-57df34374500a0c4f1f5c1a815db2a9b38ed433f.zip
Merge pull request #19003 from siddharthist/lightyear/init
lightyear: init at 9420f9e
Diffstat (limited to 'pkgs/development/idris-modules')
-rw-r--r--pkgs/development/idris-modules/lightyear.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/idris-modules/lightyear.nix b/pkgs/development/idris-modules/lightyear.nix
new file mode 100644
index 000000000000..11afd4ebe76d
--- /dev/null
+++ b/pkgs/development/idris-modules/lightyear.nix
@@ -0,0 +1,32 @@
+{ build-idris-package
+, fetchFromGitHub
+, prelude
+, base
+, effects
+, lib
+, idris
+}:
+
+let
+  date = "2016-08-01";
+in
+build-idris-package {
+  name = "lightyear-${date}";
+
+  src = fetchFromGitHub {
+    owner = "ziman";
+    repo = "lightyear";
+    rev = "9420f9e892e23a7016dea1a61d8ce43a6d4ecf15";
+    sha256 = "0xbjwq7sk4x78mi2zcqxbx7wziijlr1ayxihb1vml33lqmsgl1dn";
+  };
+
+  propagatedBuildInputs = [ prelude base effects ];
+
+  meta = {
+    description = "Parser combinators for Idris";
+    homepage = https://github.com/ziman/lightyear;
+    license = lib.licenses.bsd2;
+    maintainers = [ lib.maintainers.siddharthist ];
+    inherit (idris.meta) platforms;
+  };
+}