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

24 lines
533 B
Nix
Raw Normal View History

2016-05-22 16:58:19 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "fzy-${version}";
2018-09-24 20:28:12 +00:00
version = "1.0";
2016-05-22 16:58:19 +00:00
src = fetchFromGitHub {
owner = "jhawthorn";
repo = "fzy";
rev = version;
2018-09-24 20:28:12 +00:00
sha256 = "1gkzdvj73f71388jvym47075l9zw61v6l8wdv2lnc0mns6dxig0k";
2016-05-22 16:58:19 +00:00
};
makeFlags = "PREFIX=$(out)";
2018-09-24 20:28:12 +00:00
meta = with stdenv.lib; {
2016-05-22 16:58:19 +00:00
description = "A better fuzzy finder";
homepage = https://github.com/jhawthorn/fzy;
2018-09-24 20:28:12 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
2016-05-22 16:58:19 +00:00
};
}