2015-11-14 21:32:51 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "heatseeker";
|
2017-03-22 02:17:22 +01:00
|
|
|
version = "1.5.1";
|
2015-11-14 21:32:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rschmitt";
|
|
|
|
repo = "heatseeker";
|
|
|
|
rev = "v${version}";
|
2017-03-22 02:17:22 +01:00
|
|
|
sha256 = "1fcrbjwnhcz71i70ppy0rcgk5crwwmbkm9nrk1kapvks33pv0az7";
|
2015-11-14 21:32:51 +01:00
|
|
|
};
|
2016-04-20 11:40:59 +02:00
|
|
|
|
2019-05-25 13:03:08 +02:00
|
|
|
cargoSha256 = "0m3sxbz1iii31s30cnv1970i1mwfhl6gm19k8wv0n7zji30ayx07";
|
2017-03-22 02:17:22 +01:00
|
|
|
|
2015-11-14 21:32:51 +01:00
|
|
|
# some tests require a tty, this variable turns them off for Travis CI,
|
|
|
|
# which we can also make use of
|
2017-03-22 02:17:22 +01:00
|
|
|
TRAVIS = "true";
|
2015-11-14 21:32:51 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A general-purpose fuzzy selector";
|
|
|
|
homepage = https://github.com/rschmitt/heatseeker;
|
2017-03-22 02:17:22 +01:00
|
|
|
license = licenses.mit;
|
2015-11-14 21:32:51 +01:00
|
|
|
maintainers = [ maintainers.michaelpj ];
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2015-11-14 21:32:51 +01:00
|
|
|
};
|
|
|
|
}
|