packages feed

cabal2nix-2.8.2: test/golden-test-cases/persistable-types-HDBC-pg.nix.golden

{ mkDerivation, base, bytestring, convertible, fetchurl, HDBC
, persistable-record, relational-query-HDBC, text-postgresql
}:
mkDerivation {
  pname = "persistable-types-HDBC-pg";
  version = "0.0.1.5";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    base bytestring convertible HDBC persistable-record
    relational-query-HDBC text-postgresql
  ];
  homepage = "http://khibino.github.io/haskell-relational-record/";
  description = "HDBC and Relational-Record instances of PostgreSQL extended types";
  license = stdenv.lib.licenses.bsd3;
}