cabal2nix-2.8.2: test/golden-test-cases/emailaddress.nix.golden
{ mkDerivation, aeson, base, bifunctors, bytestring, doctest
, email-validate, fetchurl, Glob, http-api-data, opaleye
, path-pieces, persistent, postgresql-simple, product-profunctors
, profunctors, text
}:
mkDerivation {
pname = "emailaddress";
version = "0.2.0.0";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
aeson base bifunctors bytestring email-validate http-api-data
opaleye path-pieces persistent postgresql-simple
product-profunctors profunctors text
];
testHaskellDepends = [ base doctest Glob ];
homepage = "https://github.com/cdepillabout/emailaddress#readme";
description = "Wrapper around email-validate library adding instances for common type classes";
license = stdenv.lib.licenses.bsd3;
}