mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
21 lines
715 B
Nix
21 lines
715 B
Nix
{ cabal, aeson, blazeBuilder, conduit, monadControl, persistent
|
|
, postgresqlLibpq, postgresqlSimple, text, time, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent-postgresql";
|
|
version = "1.2.1.3";
|
|
sha256 = "0chr8bs0823rkpf9cfx56ghjf29s9xaw23qx5a8g27x7dw5xvc12";
|
|
buildDepends = [
|
|
aeson blazeBuilder conduit monadControl persistent postgresqlLibpq
|
|
postgresqlSimple text time transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
description = "Backend for the persistent library using postgresql";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|