Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-platform
Commits
6b4d8eea
Commit
6b4d8eea
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
pg-transact: init at 0.3.2.0
parent
fea12ddb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+1
-0
1 addition, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/pg-transact.nix
+27
-0
27 additions, 0 deletions
pkgs/pg-transact.nix
with
30 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
6b4d8eea
...
@@ -294,6 +294,7 @@ in [ callHackage "Cabal" "3.8.1.0"
...
@@ -294,6 +294,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "parallel" "3.2.2.0"
, callHackage "parallel" "3.2.2.0"
, callHackage "pcg-random" "0.1.3.7"
, callHackage "pcg-random" "0.1.3.7"
, callHackage "persistent" "2.14.3.0"
, callHackage "persistent" "2.14.3.0"
, callHackage "pg-transact" "0.3.2.0"
, callHackage "polysemy" "1.7.1.0"
, callHackage "polysemy" "1.7.1.0"
, callHackage "polysemy-extra" "0.2.1.0"
, callHackage "polysemy-extra" "0.2.1.0"
, callHackage "polysemy-kvstore" "0.1.3.0"
, callHackage "polysemy-kvstore" "0.1.3.0"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
6b4d8eea
...
@@ -351,6 +351,8 @@ final: prev: with pkgs.haskell.lib; {
...
@@ -351,6 +351,8 @@ final: prev: with pkgs.haskell.lib; {
persistent
=
prev
.
callPackage
(
./pkgs/persistent.nix
)
{
};
persistent
=
prev
.
callPackage
(
./pkgs/persistent.nix
)
{
};
pg-transact
=
prev
.
callPackage
(
./pkgs/pg-transact.nix
)
{
};
polysemy
=
prev
.
callPackage
(
./pkgs/polysemy.nix
)
{
};
polysemy
=
prev
.
callPackage
(
./pkgs/polysemy.nix
)
{
};
polysemy-extra
=
prev
.
callPackage
(
./pkgs/polysemy-extra.nix
)
{
};
polysemy-extra
=
prev
.
callPackage
(
./pkgs/polysemy-extra.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/pg-transact.nix
0 → 100644
+
27
−
0
View file @
6b4d8eea
{
mkDerivation
,
async
,
base
,
bytestring
,
criterion
,
deepseq
,
exceptions
,
hspec
,
hspec-expectations-lifted
,
lib
,
monad-control
,
postgresql-libpq
,
postgresql-simple
,
tmp-postgres
,
transformers
}:
mkDerivation
{
pname
=
"pg-transact"
;
version
=
"0.3.2.0"
;
sha256
=
"af109e82fee758d159654b9c02c396197852cbd909b5f02dbbd4ef0613270432"
;
libraryHaskellDepends
=
[
base
bytestring
exceptions
monad-control
postgresql-simple
transformers
];
testHaskellDepends
=
[
async
base
bytestring
exceptions
hspec
hspec-expectations-lifted
postgresql-libpq
postgresql-simple
tmp-postgres
];
benchmarkHaskellDepends
=
[
base
criterion
deepseq
postgresql-simple
tmp-postgres
];
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
hyperlinkSource
=
false
;
homepage
=
"https://github.com/jfischoff/pg-transact#readme"
;
description
=
"A postgresql-simple transaction monad"
;
license
=
lib
.
licenses
.
bsd3
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment