summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/shellish
diff options
context:
space:
mode:
authorCray Elliott <MP2E@archlinux.us>2014-07-14 05:01:06 -0700
committerCray Elliott <MP2E@archlinux.us>2014-07-14 05:01:54 -0700
commit9f66dafa293f16ede205bebdb27e10454d0c84fa (patch)
tree1578525aa78457a3da551cd694c1cba7af68fcd6 /pkgs/development/libraries/haskell/shellish
parentd2e731e111d6be3be7c25d237214e862fab4ca5d (diff)
downloadnixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar.gz
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar.bz2
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar.lz
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar.xz
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.tar.zst
nixlib-9f66dafa293f16ede205bebdb27e10454d0c84fa.zip
Import the Haskell library shellish 0.1.3 from Cabal
Diffstat (limited to 'pkgs/development/libraries/haskell/shellish')
-rw-r--r--pkgs/development/libraries/haskell/shellish/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/shellish/default.nix b/pkgs/development/libraries/haskell/shellish/default.nix
new file mode 100644
index 000000000000..856c63312221
--- /dev/null
+++ b/pkgs/development/libraries/haskell/shellish/default.nix
@@ -0,0 +1,14 @@
+{ cabal, filepath, mtl, strict, time, unixCompat }:
+
+cabal.mkDerivation (self: {
+  pname = "shellish";
+  version = "0.1.4";
+  sha256 = "1ldwid270mwyky6zmggbvn72hvs4s39hhf2zj8r0jahxnwlpbfan";
+  buildDepends = [ filepath mtl strict time unixCompat ];
+  meta = {
+    homepage = "http://repos.mornfall.net/shellish";
+    description = "shell-/perl- like (systems) programming in Haskell";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})