mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-22 08:30:57 +00:00
pgmanage: fix build
The configure script uses the `command` builtin command which is bash specific while having a "#!/bin/sh" head. This forces the use nix default shell (bash)
This commit is contained in:
committed by
Robin Gloster
parent
14d54ce0e9
commit
159a021bd8
@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0g9kvhs9b6kc1s7j90fqv71amiy9v0w5p906yfvl0j7pf3ayq35a";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
patchShebangs src/configure
|
||||
'';
|
||||
|
||||
buildInputs = [ postgresql openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
Reference in New Issue
Block a user