cabal2nix-2.8.2: test/golden-test-cases/ChasingBottoms.nix.golden
{ mkDerivation, array, base, containers, fetchurl, mtl, QuickCheck
, random, syb
}:
mkDerivation {
pname = "ChasingBottoms";
version = "1.3.1.3";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
base containers mtl QuickCheck random syb
];
testHaskellDepends = [
array base containers mtl QuickCheck random syb
];
description = "For testing partial and infinite values";
license = stdenv.lib.licenses.mit;
}