22 lines
667 B
Nix
22 lines
667 B
Nix
{ cabal, Cabal, downloadCurl, either, filepath, hackageDb, MissingH
|
|
, monadLoops, tar, text, transformers, yaml, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "codex";
|
|
version = "0.0.2.1";
|
|
sha256 = "0cwn44dw3fks1qaymrjn3q99lq6baginh12y6wwkhz53cd6cv41z";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Cabal downloadCurl either filepath hackageDb MissingH monadLoops
|
|
tar text transformers yaml zlib
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/aloiscochard/codex";
|
|
description = "A ctags file generator for cabal project dependencies";
|
|
license = self.stdenv.lib.licenses.asl20;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|