mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
test-framework-th-prime: add version 0.0.5
This commit is contained in:
parent
234b4affa3
commit
a4bb7cfc84
2 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
{ 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;
|
||||
};
|
||||
})
|
|
@ -1570,6 +1570,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
testFrameworkTh = callPackage ../development/libraries/haskell/test-framework-th {};
|
||||
|
||||
testFrameworkThPrime = callPackage ../development/libraries/haskell/test-framework-th-prime {};
|
||||
|
||||
testpack = callPackage ../development/libraries/haskell/testpack {};
|
||||
|
||||
texmath = callPackage ../development/libraries/haskell/texmath {};
|
||||
|
|
Loading…
Reference in a new issue