3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
461 B
Nix
17 lines
461 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HUnit";
|
|
version = "1.2.2.3";
|
|
sha256 = "158i6s014ybh5bflzspd21qzdlhdyk89yqpmk8kwc59lxjvvjsxz";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
meta = {
|
|
homepage = "http://hunit.sourceforge.net/";
|
|
description = "A unit testing framework for Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|