rel8/default.nix
2017-03-14 12:24:21 +00:00

17 lines
507 B
Nix

{ mkDerivation, base, one-liner, opaleye, postgresql-simple
, product-profunctors, profunctors, scientific, stdenv, streaming
, tagged, text, exceptions, free, streaming-postgresql-simple
, lens
}:
mkDerivation {
pname = "rel8";
version = "0.1.0.0";
src = ./.;
libraryHaskellDepends = [
base one-liner opaleye postgresql-simple product-profunctors
profunctors scientific streaming tagged text exceptions free
streaming-postgresql-simple lens
];
license = stdenv.lib.licenses.bsd3;
}