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:
Lancelot SIX 2018-03-01 14:44:25 +01:00 committed by Robin Gloster
parent 14d54ce0e9
commit 159a021bd8

View File

@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0g9kvhs9b6kc1s7j90fqv71amiy9v0w5p906yfvl0j7pf3ayq35a";
};
patchPhase = ''
patchShebangs src/configure
'';
buildInputs = [ postgresql openssl ];
meta = with stdenv.lib; {