summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lushtags
diff options
context:
space:
mode:
authorArseniy Seroka <ars.seroka@gmail.com>2014-02-07 16:20:47 +0400
committerPeter Simons <simons@cryp.to>2014-02-28 12:20:33 +0100
commitdbafe00eba6f01257316437c9f2f22df64b8a4c2 (patch)
tree0b869430e598d5b681d0b615097d176cfcae992d /pkgs/development/libraries/haskell/lushtags
parent691f6c4c5907bd0db7b8f64b44d0f000ce4087b5 (diff)
downloadnixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar.gz
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar.bz2
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar.lz
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar.xz
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.tar.zst
nixlib-dbafe00eba6f01257316437c9f2f22df64b8a4c2.zip
haskell-lushtags: add version 0.0.1
Diffstat (limited to 'pkgs/development/libraries/haskell/lushtags')
-rw-r--r--pkgs/development/libraries/haskell/lushtags/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/lushtags/default.nix b/pkgs/development/libraries/haskell/lushtags/default.nix
new file mode 100644
index 000000000000..bf05cd5e63d0
--- /dev/null
+++ b/pkgs/development/libraries/haskell/lushtags/default.nix
@@ -0,0 +1,17 @@
+{ cabal, haskellSrcExts, text, vector }:
+
+cabal.mkDerivation (self: {
+  pname = "lushtags";
+  version = "0.0.1";
+  sha256 = "0325c064nsczypapvwdchx7x5n69jxjbyjs90ah7q5ydxbjl6w9c";
+  isLibrary = false;
+  isExecutable = true;
+  buildDepends = [ haskellSrcExts text vector ];
+  jailbreak = true;
+  meta = {
+    homepage = "https://github.com/bitc/lushtags";
+    description = "Create ctags compatible tags files for Haskell programs";
+    license = self.stdenv.lib.licenses.mit;
+    platforms = self.ghc.meta.platforms;
+  };
+})