cabal2nix-2.8.2: test/golden-test-cases/cassette.nix.golden
{ mkDerivation, base, fetchurl }:
mkDerivation {
pname = "cassette";
version = "0.1.0";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [ base ];
description = "A combinator library for simultaneously defining parsers and pretty printers";
license = stdenv.lib.licenses.bsd3;
}