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

24 lines
529 B
Nix
Raw Normal View History

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