rel8/default.nix

17 lines
507 B
Nix
Raw Normal View History

2017-01-20 00:52:49 +03:00
{ mkDerivation, base, one-liner, opaleye, postgresql-simple
, product-profunctors, profunctors, scientific, stdenv, streaming
, tagged, text, exceptions, free, streaming-postgresql-simple
2017-03-14 15:24:00 +03:00
, lens
2017-01-20 00:52:49 +03:00
}:
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
2017-03-14 15:24:00 +03:00
streaming-postgresql-simple lens
2017-01-20 00:52:49 +03:00
];
license = stdenv.lib.licenses.bsd3;
}