-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
21 lines (21 loc) · 749 Bytes
/
default.nix
File metadata and controls
21 lines (21 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, attoparsec, base, bytestring, case-conversion
, data-default, directory, exceptions, filepath, heredoc, hspec
, postgresql-simple, safe, stdenv, template-haskell, text, time
, transformers
}:
mkDerivation {
pname = "postgresql-simple-bind";
version = "0.4.1";
src = ./.;
libraryHaskellDepends = [
attoparsec base bytestring data-default directory exceptions
filepath heredoc postgresql-simple safe template-haskell text time
transformers
];
testHaskellDepends = [
attoparsec base bytestring case-conversion data-default directory
exceptions filepath heredoc hspec postgresql-simple text
];
description = "FFI-like bindings for PostgreSQL stored functions";
license = stdenv.lib.licenses.bsd3;
}