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

persistent-sqlite: init at 2.13.1.0

parent 18cedb7b
No related merge requests found
......@@ -286,6 +286,7 @@ let otherLibraries =
(None H.Subdir)
, H.callHackage "optparse-generic" "1.4.8"
, H.callHackage "partial-order" "0.2.0.0"
, H.callHackage "persistent-sqlite" "2.13.1.0"
, H.callHackage "persistent-test" "2.13.1.3"
, H.callHackage "pipes-safe" "2.3.4"
, H.callGit
......
......@@ -257,6 +257,8 @@ final: prev: with pkgs.haskell.lib; {
partial-order = final.callPackage (./pkgs/partial-order.nix) { };
persistent-sqlite = final.callPackage (./pkgs/persistent-sqlite.nix) { };
persistent-test = final.callPackage (./pkgs/persistent-test.nix) { };
pipes-safe = final.callPackage (./pkgs/pipes-safe.nix) { };
......
{ mkDerivation
, HUnit
, QuickCheck
, aeson
, base
, bytestring
, conduit
, containers
, exceptions
, fast-logger
, hspec
, lib
, microlens
, microlens-th
, monad-logger
, mtl
, persistent
, persistent-test
, resource-pool
, resourcet
, sqlite
, system-fileio
, system-filepath
, temporary
, text
, time
, transformers
, unliftio-core
, unordered-containers
}:
mkDerivation {
pname = "persistent-sqlite";
version = "2.13.1.0";
sha256 = "2b2885f4e8031bbd5f342549c5fbb48cd6c3489930ea641bf5c681b02d2806fd";
configureFlags = [ "-fsystemlib" ];
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
bytestring
conduit
containers
microlens-th
monad-logger
mtl
persistent
resource-pool
resourcet
text
time
transformers
unliftio-core
unordered-containers
];
librarySystemDepends = [ sqlite ];
testHaskellDepends = [
base
bytestring
conduit
containers
exceptions
fast-logger
hspec
HUnit
microlens
monad-logger
mtl
persistent
persistent-test
QuickCheck
resourcet
system-fileio
system-filepath
temporary
text
time
transformers
unliftio-core
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Backend for the persistent library using sqlite3";
license = lib.licenses.mit;
broken = false;
}
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