blob: cee77d3a15880545d6fb9f2e40adde734b404808 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ lib, stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
pname = "pick";
version = "4.0.0";
src = fetchFromGitHub {
owner = "mptre";
repo = "pick";
rev = "v${version}";
sha256 = "8cgt5KpLfnLwhucn4DQYC/7ot1u24ahJxWG+/1SL584=";
};
buildInputs = [ ncurses ];
PREFIX = placeholder "out";
meta = with lib; {
inherit (src.meta) homepage;
description = "Fuzzy text selection utility";
license = licenses.mit;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux ++ platforms.darwin;
mainProgram = "pick";
};
}
|