heatseeker: 1.4.0 -> 1.5.1
This patch updates the `heatseeker` package from version 1.4.0 to version 1.5.1. I have tested this change per nixpkgs manual section 11.1 ("Making patches").
This commit is contained in:
parent
a453aa0033
commit
c2ab1fa350
@ -4,25 +4,25 @@ with rustPlatform;
|
|||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
name = "heatseeker-${version}";
|
name = "heatseeker-${version}";
|
||||||
version = "1.4.0";
|
version = "1.5.1";
|
||||||
|
|
||||||
depsSha256 = "1acimdkl6ra9jlyiydzzd6ccdygr5is2xf9gw8i45xzh0xnsq226";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rschmitt";
|
owner = "rschmitt";
|
||||||
repo = "heatseeker";
|
repo = "heatseeker";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1v2p6l4bdmvn9jggb12p0j5ajjvnbcdjsiavlcqiijz2w8wcdgs8";
|
sha256 = "1fcrbjwnhcz71i70ppy0rcgk5crwwmbkm9nrk1kapvks33pv0az7";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
depsSha256 = "05mj84a5k65ai492grwg03c3wq6ardhs114bv951fgysc9rs07p5";
|
||||||
|
|
||||||
# some tests require a tty, this variable turns them off for Travis CI,
|
# some tests require a tty, this variable turns them off for Travis CI,
|
||||||
# which we can also make use of
|
# which we can also make use of
|
||||||
TRAVIS= "true";
|
TRAVIS = "true";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A general-purpose fuzzy selector";
|
description = "A general-purpose fuzzy selector";
|
||||||
homepage = https://github.com/rschmitt/heatseeker;
|
homepage = https://github.com/rschmitt/heatseeker;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.michaelpj ];
|
maintainers = [ maintainers.michaelpj ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user