summary refs log tree commit diff
diff options
context:
space:
mode:
authorLangston Barrett <langston.barrett@gmail.com>2016-09-27 06:11:09 +0000
committerLangston Barrett <langston.barrett@gmail.com>2016-09-27 18:01:15 +0000
commit0b532b7d2a13770888e2a4f1187d58df990ca514 (patch)
tree0ac880d7f6b5bbbdd03b0e9008065902d68e1d86
parent7bda74f676ac4e48c39cd1fb8233106f39bcbca2 (diff)
downloadnixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar.gz
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar.bz2
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar.lz
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar.xz
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.tar.zst
nixlib-0b532b7d2a13770888e2a4f1187d58df990ca514.zip
lightyear: init at 9420f9e
-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;
+  };
+}