fzy: 0.9 -> 1.0 (#47295)

This commit is contained in:
Vladyslav M 2018-09-24 23:28:12 +03:00 committed by xeji
parent 256af6d039
commit 634c37cb83

View File

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