3
0
Fork 0
forked from mirrors/nixpkgs

haskell-lushtags: add version 0.0.1

This commit is contained in:
Arseniy Seroka 2014-02-07 16:20:47 +04:00 committed by Peter Simons
parent 691f6c4c59
commit dbafe00eba
2 changed files with 19 additions and 0 deletions

View file

@ -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;
};
})

View file

@ -1638,6 +1638,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
logict = callPackage ../development/libraries/haskell/logict {};
lushtags = callPackage ../development/libraries/haskell/lushtags {};
maccatcher = callPackage ../development/libraries/haskell/maccatcher {};
markdownUnlit = callPackage ../development/libraries/haskell/markdown-unlit {};