nixpkgs/pkgs/tools/misc/pick/default.nix

27 lines
633 B
Nix
Raw Normal View History

2017-09-24 13:40:00 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses, pkgconfig }:
2016-06-28 17:47:02 +02:00
stdenv.mkDerivation rec {
pname = "pick";
version = "2.0.2";
2016-06-28 17:47:02 +02:00
src = fetchFromGitHub {
2017-08-07 17:21:56 +02:00
owner = "calleerlandsson";
2016-06-28 17:47:02 +02:00
repo = "pick";
rev = "v${version}";
sha256 = "0wm3220gqrwldiq0rjdraq5mw3i7d58zwzls8234sx9maf59h0k0";
2016-06-28 17:47:02 +02:00
};
buildInputs = [ ncurses ];
2017-09-24 13:40:00 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-05-28 15:59:59 +02:00
2016-06-28 17:47:02 +02:00
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Fuzzy text selection utility";
license = licenses.mit;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux ++ platforms.darwin;
};
}