haskell-codex: add version 0.0.1.6

This commit is contained in:
John Wiegley
2014-05-23 16:55:12 +02:00
committed by Peter Simons
parent 04f3c8e718
commit 47a8cd7008
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ cabal, Cabal_1_20_0_0, downloadCurl, either, filepath, hackageDb, MissingH
, monadLoops, tar, text, transformers, yaml, zlib
}:
cabal.mkDerivation (self: {
pname = "codex";
version = "0.0.1.6";
sha256 = "0yr3qygxxj4k8ld7jh1h87jjawvixbz5wjssdxd5ix7askmm1dx2";
isLibrary = true;
isExecutable = true;
buildDepends = [
Cabal_1_20_0_0 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 = "unknown";
platforms = self.ghc.meta.platforms;
};
})