pgmanage: 10.1.0 -> 10.1.1

This commit is contained in:
Bas van Dijk 2018-03-07 22:28:58 +01:00
parent 2653355a9c
commit 65b1c735de

View File

@ -2,19 +2,23 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "pgmanage-${version}"; name = "pgmanage-${version}";
version = "10.1.0"; version = "10.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pgManage"; owner = "pgManage";
repo = "pgManage"; repo = "pgManage";
rev = "v${version}"; rev = "v${version}";
sha256 = "0kzdq3xl6wyclngq307544yk57vpm10wyklkbgzx649z3pls3kyw"; sha256 = "1gv96an1ff9amh16lf71wknshmxl3l4hsl3ga7wb106c10i14zzc";
}; };
patchPhase = '' patchPhase = ''
patchShebangs src/configure patchShebangs src/configure
''; '';
configurePhase = ''
./configure --prefix $out
'';
buildInputs = [ postgresql openssl ]; buildInputs = [ postgresql openssl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {