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

postgresql-migration: init at 0.2.1.4

parent cf299622
Branches
No related merge requests found
......@@ -327,6 +327,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "polysemy-vinyl" "0.1.5.0"
, callHackage "polysemy-zoo" "0.8.0.0"
, callHackage "postgresql-libpq" "0.9.4.3"
, callHackage "postgresql-migration" "0.2.1.4"
, callHackage "postgresql-simple" "0.6.4"
, callHackage "postgresql-simple-migration" "0.1.15.0"
, callHackage "pretty-simple" "4.1.1.0"
......
......@@ -393,6 +393,8 @@ final: prev: with pkgs.haskell.lib; {
postgresql-libpq = prev.callPackage (./pkgs/postgresql-libpq.nix) { };
postgresql-migration = prev.callPackage (./pkgs/postgresql-migration.nix) { };
postgresql-simple = prev.callPackage (./pkgs/postgresql-simple.nix) { };
postgresql-simple-migration = prev.callPackage (./pkgs/postgresql-simple-migration.nix) { };
......
{ mkDerivation, base, base64-bytestring, bytestring, cryptohash
, directory, filepath, hspec, lib, postgresql-simple, text, time
}:
mkDerivation {
pname = "postgresql-migration";
version = "0.2.1.4";
sha256 = "1a208648901a320650da06d4bde50caf95560721fd9c7aae005cc647d57b195d";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base base64-bytestring bytestring cryptohash directory filepath
postgresql-simple text time
];
executableHaskellDepends = [
base base64-bytestring bytestring cryptohash directory
postgresql-simple text time
];
testHaskellDepends = [ base bytestring hspec postgresql-simple ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/andrevdm/postgresql-migration";
description = "PostgreSQL Schema Migrations";
license = lib.licenses.bsd3;
mainProgram = "migrate";
}
\ 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