3
0
Fork 0
forked from mirrors/nixpkgs

pick: init at 1.4.0

This commit is contained in:
Kranium Gikos Mendoza 2016-06-28 23:47:02 +08:00
parent 453086a15f
commit ff06326d78
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
stdenv.mkDerivation rec {
name = "pick-${version}";
version = "1.4.0";
src = fetchFromGitHub {
owner = "thoughtbot";
repo = "pick";
rev = "v${version}";
sha256 = "113if0jh7svwrwrxhrsbi7h1whfr5707v2ny4dc9kk2sjbv6b9pg";
};
buildInputs = [ ncurses ];
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Fuzzy text selection utility";
license = licenses.mit;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View file

@ -2839,6 +2839,8 @@ in
pell = callPackage ../applications/misc/pell { };
pick = callPackage ../tools/misc/pick { };
pitivi = callPackage ../applications/video/pitivi {
gst = gst_all_1 //
{ gst-plugins-bad = gst_all_1.gst-plugins-bad.overrideDerivation