pspg: 1.0.0 -> 1.1.0

This commit is contained in:
José Luis Lafuente 2018-04-26 20:27:41 +02:00
parent f925480215
commit a95a0a932b
No known key found for this signature in database
GPG Key ID: 8A3455EBE455489A

View File

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