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