1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

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 {
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"