summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-05-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-05-20 04:20:00 +0000
commitae9058c49f3191cdae6dd427c28d39622c1af7a0 (patch)
tree2cb895b12ed814610c1d9a0d81f620e59516b21b /pkgs
parent772e39b23727a5e69bf021fe1bde079b965580e8 (diff)
downloadnixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar.gz
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar.bz2
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar.lz
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar.xz
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.tar.zst
nixpkgs-ae9058c49f3191cdae6dd427c28d39622c1af7a0.zip
postgresql11Packages.pipelinedb: mark as broken for PostgreSQL≠11
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pipelinedb.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pipelinedb.nix b/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
index 06c36a4ff6c..6403138fd70 100644
--- a/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
+++ b/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
     license = licenses.asl20;
     platforms = postgresql.meta.platforms;
     maintainers = [ maintainers.marsam ];
-    broken = versionOlder postgresql.version "10";
+    broken = versions.major postgresql.version != "11";
   };
 }