Skip to content
Snippets Groups Projects
Commit d9620a07 authored by Daniel Firth's avatar Daniel Firth
Browse files

pg-entity: init at 0.0.2.0

parent 51a1220a
No related merge requests found
...@@ -308,6 +308,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -308,6 +308,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "pcg-random" "0.1.3.7" , callHackage "pcg-random" "0.1.3.7"
, callHackage "pcre2" "2.2.1" , callHackage "pcre2" "2.2.1"
, callHackage "persistent" "2.14.3.0" , callHackage "persistent" "2.14.3.0"
, callHackage "pg-entity" "0.0.2.0"
, callHackage "pg-transact" "0.3.2.0" , callHackage "pg-transact" "0.3.2.0"
, callCabal2nix , callCabal2nix
"pg-transact-effectful" "pg-transact-effectful"
......
...@@ -371,6 +371,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -371,6 +371,8 @@ final: prev: with pkgs.haskell.lib; {
persistent = prev.callPackage (./pkgs/persistent.nix) { }; persistent = prev.callPackage (./pkgs/persistent.nix) { };
pg-entity = prev.callPackage (./pkgs/pg-entity.nix) { };
pg-transact = prev.callPackage (./pkgs/pg-transact.nix) { }; pg-transact = prev.callPackage (./pkgs/pg-transact.nix) { };
pg-transact-effectful = prev.callPackage (./pkgs/pg-transact-effectful.nix) { }; pg-transact-effectful = prev.callPackage (./pkgs/pg-transact-effectful.nix) { };
......
{ mkDerivation, aeson, base, bytestring, colourista, containers
, exceptions, hedgehog, lib, monad-control, mtl, optics-core
, parsec, pg-transact, postgresql-simple
, postgresql-simple-migration, resource-pool, safe-exceptions
, tasty, tasty-hunit, template-haskell, text, text-display
, text-manipulate, time, tmp-postgres, uuid, vector
}:
mkDerivation {
pname = "pg-entity";
version = "0.0.2.0";
sha256 = "3bcc0981b43722de34b2d610ddfef8c43fb97607297a0b4052a4d2425364113d";
revision = "1";
editedCabalFile = "03f0isq7vdjc1xbdchb5l0ggbf61jkxn2q1bii6sx8nphfgk4c9j";
libraryHaskellDepends = [
base bytestring colourista exceptions monad-control parsec
pg-transact postgresql-simple resource-pool safe-exceptions
template-haskell text text-display text-manipulate time uuid vector
];
testHaskellDepends = [
aeson base containers hedgehog mtl optics-core pg-transact
postgresql-simple postgresql-simple-migration resource-pool
safe-exceptions tasty tasty-hunit text time tmp-postgres uuid
vector
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://tchoutri.github.io/pg-entity";
description = "A pleasant PostgreSQL layer";
license = lib.licenses.mit;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment