Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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").

authored by

c74d and committed by
Franz Pletz
c2ab1fa3 a453aa00

+6 -6
+6 -6
pkgs/tools/misc/heatseeker/default.nix
··· 4 5 buildRustPackage rec { 6 name = "heatseeker-${version}"; 7 - version = "1.4.0"; 8 - 9 - depsSha256 = "1acimdkl6ra9jlyiydzzd6ccdygr5is2xf9gw8i45xzh0xnsq226"; 10 11 src = fetchFromGitHub { 12 owner = "rschmitt"; 13 repo = "heatseeker"; 14 rev = "v${version}"; 15 - sha256 = "1v2p6l4bdmvn9jggb12p0j5ajjvnbcdjsiavlcqiijz2w8wcdgs8"; 16 }; 17 18 # some tests require a tty, this variable turns them off for Travis CI, 19 # which we can also make use of 20 - TRAVIS= "true"; 21 22 meta = with stdenv.lib; { 23 description = "A general-purpose fuzzy selector"; 24 homepage = https://github.com/rschmitt/heatseeker; 25 - license = stdenv.lib.licenses.mit; 26 maintainers = [ maintainers.michaelpj ]; 27 platforms = platforms.linux; 28 };
··· 4 5 buildRustPackage rec { 6 name = "heatseeker-${version}"; 7 + version = "1.5.1"; 8 9 src = fetchFromGitHub { 10 owner = "rschmitt"; 11 repo = "heatseeker"; 12 rev = "v${version}"; 13 + sha256 = "1fcrbjwnhcz71i70ppy0rcgk5crwwmbkm9nrk1kapvks33pv0az7"; 14 }; 15 16 + depsSha256 = "05mj84a5k65ai492grwg03c3wq6ardhs114bv951fgysc9rs07p5"; 17 + 18 # some tests require a tty, this variable turns them off for Travis CI, 19 # which we can also make use of 20 + TRAVIS = "true"; 21 22 meta = with stdenv.lib; { 23 description = "A general-purpose fuzzy selector"; 24 homepage = https://github.com/rschmitt/heatseeker; 25 + license = licenses.mit; 26 maintainers = [ maintainers.michaelpj ]; 27 platforms = platforms.linux; 28 };