summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/persistent-template/default.nix
blob: 9b41f8e0396dba053d92b742c5e47a1091727275 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, monadControl, persistent, text, webRoutesQuasi}:

cabal.mkDerivation (self : {
  pname = "persistent-template";
  version = "0.5.1";
  sha256 = "163j36pm6fl64m4h8kgj9h19snh026ia1166p3c6rjw86qi9fk0r";
  propagatedBuildInputs = [monadControl persistent text webRoutesQuasi];
  meta = {
    description = "Type-safe, non-relational, multi-backend persistence";
    license = "BSD3";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})