nixpkgs/pkgs/development/libraries/haskell/test-framework-th-prime/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

14 lines
422 B
Nix

{ cabal, cpphs, haskellSrcExts, testFramework }:
cabal.mkDerivation (self: {
pname = "test-framework-th-prime";
version = "0.0.5";
sha256 = "0lsxnbckh88cq38azml86szdcvx3rhs3is13ib4z0ryfqnv4hhpl";
buildDepends = [ cpphs haskellSrcExts testFramework ];
meta = {
description = "Template Haskell for test framework";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})