forked from mirrors/nixpkgs
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:
parent
14d54ce0e9
commit
159a021bd8
|
@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0g9kvhs9b6kc1s7j90fqv71amiy9v0w5p906yfvl0j7pf3ayq35a";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
patchShebangs src/configure
|
||||
'';
|
||||
|
||||
buildInputs = [ postgresql openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue