3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
24 lines
637 B
Nix
24 lines
637 B
Nix
{ cabal, hslogger, HUnit, mtl, network, parsec, random, regexCompat
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "MissingH";
|
|
version = "1.1.0.3";
|
|
sha256 = "2d566511e8a347189cf864188d97f8406c6958c6f0a6fcf8cb1593c6bae13dbf";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
hslogger HUnit mtl network parsec random regexCompat
|
|
];
|
|
meta = {
|
|
homepage = "http://software.complete.org/missingh";
|
|
description = "Large utility library";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|