Merge pull request #3578 from ts468/haskell-hscope
Add Haskell packages: hscope and pure-cdb
This commit is contained in:
21
pkgs/development/tools/haskell/hscope/default.nix
Normal file
21
pkgs/development/tools/haskell/hscope/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ cabal, cereal, cpphs, deepseq, haskellSrcExts, mtl, pureCdb
|
||||
, uniplate, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hscope";
|
||||
version = "0.4";
|
||||
sha256 = "1jb2d61c1as6li54zw33jsyvfap214pqxpkr2m6lkzaizh8396hg";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cereal cpphs deepseq haskellSrcExts mtl pureCdb uniplate vector
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/bosu/hscope";
|
||||
description = "cscope like browser for Haskell code";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user