rel8/default.nix
2017-01-20 22:36:35 +00:00

16 lines
453 B
Nix

{ mkDerivation, base, one-liner, opaleye, postgresql-simple
, product-profunctors, profunctors, scientific, stdenv, streaming
, tagged, text, exceptions, free, labels
}:
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
labels
];
license = stdenv.lib.licenses.bsd3;
}