cabal2nix-2.9.3: test/golden-test-cases/postgresql-simple-url.nix.golden
{ mkDerivation, base, network-uri, postgresql-simple, split, stdenv
, tasty, tasty-quickcheck
}:
mkDerivation {
pname = "postgresql-simple-url";
version = "0.2.0.0";
sha256 = "deadbeef";
libraryHaskellDepends = [
base network-uri postgresql-simple split
];
testHaskellDepends = [
base postgresql-simple tasty tasty-quickcheck
];
homepage = "https://github.com/futurice/postgresql-simple-url";
description = "Parse postgres:// url into ConnectInfo";
license = stdenv.lib.licenses.mit;
}