mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
14 lines
422 B
Nix
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;
|
|
};
|
|
})
|