nixpkgs/pkgs/development/libraries/haskell/persistent-sqlite/default.nix

20 lines
598 B
Nix
Raw Normal View History

{ cabal, aeson, conduit, monadControl, persistent, text
, transformers
}:
cabal.mkDerivation (self: {
pname = "persistent-sqlite";
version = "0.9.0.2";
sha256 = "19wmz13k3qbpam2siykczgacgaj48yw4p7iz3y6v8a2z8wha73zb";
buildDepends = [
aeson conduit monadControl persistent text transformers
];
meta = {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Backend for the persistent library using sqlite3";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})