We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60afa56 commit 1a1e823Copy full SHA for 1a1e823
nix/ext/supautils.nix
@@ -2,21 +2,21 @@
2
3
stdenv.mkDerivation rec {
4
pname = "supautils";
5
- version = "2.6.0";
+ version = "2.9.1";
6
7
buildInputs = [ postgresql ];
8
9
src = fetchFromGitHub {
10
owner = "supabase";
11
repo = pname;
12
rev = "refs/tags/v${version}";
13
- hash = "sha256-QNfUpQjqHNzbNqBvjb5a3GtNH9hjbBMDUK19xUU3LpI=";
+ hash = "sha256-Rw7dmIUg9bJ7SuiHxCsZtnVhdG9hg4WlptiB/MxVmPc=";
14
};
15
16
installPhase = ''
17
mkdir -p $out/lib
18
19
- install -D *${postgresql.dlSuffix} -t $out/lib
+ install -D build/*${postgresql.dlSuffix} -t $out/lib
20
'';
21
22
meta = with lib; {
0 commit comments