27 lines
782 B
Nix
27 lines
782 B
Nix
{ 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.1.1";
|
|
sha256 = "0j425h0av82cbwkfds2jhf3hsm2wd8vca8bjdyg8v09k6kb220cs";
|
|
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;
|
|
};
|
|
})
|