Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pick: 1.7.0 -> 1.9.0

(cherry picked from commit f43baf94a3d323a4410e28a7db35c96fb62b7765)

authored by

Kranium Gikos Mendoza and committed by
Robin Gloster
8a3d960b 9c6cabe7

+4 -8
+4 -8
pkgs/tools/misc/pick/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoreconfHook, ncurses }: 1 + { stdenv, fetchFromGitHub, autoreconfHook, ncurses, pkgconfig }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "pick-${version}"; 5 - version = "1.7.0"; 5 + version = "1.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "calleerlandsson"; 9 9 repo = "pick"; 10 10 rev = "v${version}"; 11 - sha256 = "1x7ql530rj4yj50dzp8526mz92g4hhqxnig1qgiq3h3k815p31qb"; 11 + sha256 = "0s0mn9iz17ldhvahggh9rsmgfrjh0kvk5bh4p9xhxcn7rcp0h5ka"; 12 12 }; 13 13 14 14 buildInputs = [ ncurses ]; 15 15 16 - nativeBuildInputs = [ autoreconfHook ]; 17 - 18 - postPatch = '' 19 - sed -i -e 's/\[curses]/\[ncurses]/g' configure.ac 20 - ''; 16 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 21 17 22 18 meta = with stdenv.lib; { 23 19 inherit (src.meta) homepage;