nixpkgs/pkgs/development/tools/haskell/codex/default.nix

22 lines
667 B
Nix
Raw Normal View History

2014-05-23 17:58:48 +02:00
{ cabal, Cabal, downloadCurl, either, filepath, hackageDb, MissingH
2014-05-23 16:55:12 +02:00
, monadLoops, tar, text, transformers, yaml, zlib
}:
cabal.mkDerivation (self: {
pname = "codex";
version = "0.1.0.1";
sha256 = "1s2sn2i0ah4wgyzz5vqkm65jkl3c38cwa2kp0az4xl3vb8y6x7la";
2014-05-23 16:55:12 +02:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-05-23 17:58:48 +02:00
Cabal downloadCurl either filepath hackageDb MissingH monadLoops
tar text transformers yaml zlib
2014-05-23 16:55:12 +02:00
];
meta = {
homepage = "http://github.com/aloiscochard/codex";
description = "A ctags file generator for cabal project dependencies";
2014-05-23 17:58:48 +02:00
license = self.stdenv.lib.licenses.asl20;
2014-05-23 16:55:12 +02:00
platforms = self.ghc.meta.platforms;
};
})