My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/fzy/default.nix

23 lines
527 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fzy";
version = "1.0";
src = fetchFromGitHub {
owner = "jhawthorn";
repo = "fzy";
rev = version;
sha256 = "1gkzdvj73f71388jvym47075l9zw61v6l8wdv2lnc0mns6dxig0k";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A better fuzzy finder";
homepage = "https://github.com/jhawthorn/fzy";
license = licenses.mit;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
};
}