summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-11-27 22:57:50 -0800
committerJonathan Ringer <jonringer117@gmail.com>2019-11-27 22:57:50 -0800
commit0c1c18ca4416baa46c940960aa5e619873a2318e (patch)
tree78d7fd3eb63e91fa99267e2d91a2a891ee29f567 /pkgs/servers/sql
parent4cc592761db580855b47fb84776e68b1d936521c (diff)
parentf4f816902112778172565baf91c2483186027c3b (diff)
downloadnixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar.gz
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar.bz2
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar.lz
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar.xz
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.tar.zst
nixpkgs-0c1c18ca4416baa46c940960aa5e619873a2318e.zip
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgtap.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgtap.nix b/pkgs/servers/sql/postgresql/ext/pgtap.nix
index 804356e9f6b..54e92b977bc 100644
--- a/pkgs/servers/sql/postgresql/ext/pgtap.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgtap.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "pgtap";
-  version = "1.0.0";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "theory";
     repo = "pgtap";
     rev = "v${version}";
-    sha256 = "0ks53lsrpa8yxav8jh0jlvs25y6p7mkcdch8il1kvib9k5zq2wnb";
+    sha256 = "09fvzsl8m18yzpvrz6cqvs1ffzs451iwmb2mw39yq69jgqby5kqy";
   };
 
   nativeBuildInputs = [ postgresql perl perlPackages.TAPParserSourceHandlerpgTAP which ];