Skip to content

Commit

Permalink
pgmanage: fix build
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
lsix committed Mar 1, 2018
1 parent 14d54ce commit a1c06ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/misc/pgmanage/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0g9kvhs9b6kc1s7j90fqv71amiy9v0w5p906yfvl0j7pf3ayq35a";
};

patchPhase = ''
patchShebangs src/configure
'';

buildInputs = [ postgresql openssl ];

meta = with stdenv.lib; {
Expand Down

0 comments on commit a1c06ea

Please sign in to comment.