summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lushtags/default.nix
blob: bf05cd5e63d0f13274d13437c141266c8b63c936 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  };
})