cabal2nix-2.8.2: test/golden-test-cases/chell.nix.golden
{ mkDerivation, ansi-terminal, base, bytestring, fetchurl, options
, patience, random, template-haskell, text, transformers
}:
mkDerivation {
pname = "chell";
version = "0.4.0.2";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
ansi-terminal base bytestring options patience random
template-haskell text transformers
];
homepage = "https://john-millikin.com/software/chell/";
description = "A simple and intuitive library for automated testing";
license = stdenv.lib.licenses.mit;
}