Skip to content

Commit 1d4af35

Browse files
authored
fix: build extensions not supporting multiversion (#1967)
`pgtap` and `supautils` don't support multiversion (yet), so we need to fix their drv name to be able to build them through the legacyPackage set.
1 parent 75c71e3 commit 1d4af35

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

nix/ext/pgtap.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
stdenv.mkDerivation rec {
1212
pname = "pgtap";
13+
name = pname;
1314
version = "1.2.0";
1415

1516
src = fetchFromGitHub {

nix/ext/supautils.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
stdenv.mkDerivation rec {
99
pname = "supautils";
10+
name = pname;
1011
version = "3.0.1";
1112

1213
buildInputs = [ postgresql ];

0 commit comments

Comments
 (0)