Merge pull request #39568 from jlesquembre/psql

pspg: 1.0.0 -> 1.1.0
This commit is contained in:
Jörg Thalheim 2018-04-27 09:04:04 +01:00 committed by GitHub
commit 3ce30f679e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig }:
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline }:
stdenv.mkDerivation rec {
name = "pspg-${version}";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = "okbob";
repo = "pspg";
rev = "${version}";
sha256 = "1swrg4bg7i4xpdrsg8dsfldbxaffni04x8i1s0g6h691qcin675v";
sha256 = "10r6jfcqw4wclp84f07g3bda844csgm4sh7cjsnk2smmal7nhybs";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gnugrep ncurses ];
buildInputs = [ gnugrep ncurses readline ];
preBuild = ''
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"