mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
457 B
Nix
16 lines
457 B
Nix
{ cabal, deepseq }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HUnit";
|
|
version = "1.2.5.2";
|
|
sha256 = "0hcs6qh8bqhip1kkjjnw7ccgcsmawdz5yvffjj5y8zd2vcsavx8a";
|
|
buildDepends = [ deepseq ];
|
|
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 ];
|
|
};
|
|
})
|