mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
haskell-HTF: add version 0.11.0.1
This commit is contained in:
parent
fadca15b2e
commit
a773bf4398
26
pkgs/development/libraries/haskell/HTF/default.nix
Normal file
26
pkgs/development/libraries/haskell/HTF/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ cabal, aeson, cpphs, Diff, filepath, haskellSrcExts, HUnit
|
||||
, liftedBase, monadControl, mtl, QuickCheck, random, regexCompat
|
||||
, temporary, text, unorderedContainers, xmlgen
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "HTF";
|
||||
version = "0.11.0.1";
|
||||
sha256 = "0c4z76rsmdck60p7p2ypxx0d0r7k2vcb9viqp2yalyxzaaj7a9f5";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
aeson cpphs Diff haskellSrcExts HUnit liftedBase monadControl mtl
|
||||
QuickCheck random regexCompat text xmlgen
|
||||
];
|
||||
testDepends = [
|
||||
aeson filepath mtl random regexCompat temporary text
|
||||
unorderedContainers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/skogsbaer/HTF/";
|
||||
description = "The Haskell Test Framework";
|
||||
license = "LGPL";
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1172,6 +1172,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
hexpat = callPackage ../development/libraries/haskell/hexpat {};
|
||||
|
||||
HTF = callPackage ../development/libraries/haskell/HTF {};
|
||||
|
||||
HTTP_4000_0_6 = callPackage ../development/libraries/haskell/HTTP/4000.0.6.nix {};
|
||||
HTTP_4000_0_9 = callPackage ../development/libraries/haskell/HTTP/4000.0.9.nix {};
|
||||
HTTP_4000_1_1 = callPackage ../development/libraries/haskell/HTTP/4000.1.1.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user