cabal2nix-2.8.2: test/golden-test-cases/HTF.nix.golden
{ mkDerivation, aeson, aeson-pretty, array, base, base64-bytestring
, bytestring, containers, cpphs, Diff, directory, fetchurl
, filepath, haskell-src, HUnit, lifted-base, monad-control, mtl
, old-time, pretty, process, QuickCheck, random, regex-compat
, template-haskell, temporary, text, time, unix
, unordered-containers, vector, xmlgen
}:
mkDerivation {
pname = "HTF";
version = "0.13.2.2";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson array base base64-bytestring bytestring containers cpphs Diff
directory haskell-src HUnit lifted-base monad-control mtl old-time
pretty process QuickCheck random regex-compat text time unix vector
xmlgen
];
executableHaskellDepends = [
array base cpphs directory HUnit mtl old-time random text
];
testHaskellDepends = [
aeson aeson-pretty base bytestring directory filepath HUnit mtl
process random regex-compat template-haskell temporary text
unordered-containers
];
homepage = "https://github.com/skogsbaer/HTF/";
description = "The Haskell Test Framework";
license = "LGPL";
}