pick: 2.0.2 -> 4.0.0 (#136348)

This commit is contained in:
Kranium Mendoza 2021-09-01 18:51:55 +10:00 committed by GitHub
parent 46066ac79e
commit ed48b35991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses, pkg-config }:
{ lib, stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
pname = "pick";
version = "2.0.2";
version = "4.0.0";
src = fetchFromGitHub {
owner = "calleerlandsson";
owner = "mptre";
repo = "pick";
rev = "v${version}";
sha256 = "0wm3220gqrwldiq0rjdraq5mw3i7d58zwzls8234sx9maf59h0k0";
sha256 = "8cgt5KpLfnLwhucn4DQYC/7ot1u24ahJxWG+/1SL584=";
};
buildInputs = [ ncurses ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
PREFIX = placeholder "out";
meta = with lib; {
inherit (src.meta) homepage;