tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
heatseeker: init at 1.3.0
Michael Peyton Jones
10 years ago
ef8e002b
6b096582
+31
3 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
tools
misc
heatseeker
default.nix
top-level
all-packages.nix
+1
lib/maintainers.nix
···
179
179
meditans = "Carlo Nucera <meditans@gmail.com>";
180
180
meisternu = "Matt Miemiec <meister@krutt.org>";
181
181
michelk = "Michel Kuhlmann <michel@kuhlmanns.info>";
182
182
+
michaelpj = "Michael Peyton Jones <michaelpj@gmail.com>";
182
183
mirdhyn = "Merlin Gaillard <mirdhyn@gmail.com>";
183
184
mschristiansen = "Mikkel Christiansen <mikkel@rheosystems.com>";
184
185
modulistic = "Pablo Costa <modulistic@gmail.com>";
+28
pkgs/tools/misc/heatseeker/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, rustPlatform }:
2
2
+
3
3
+
with rustPlatform;
4
4
+
5
5
+
buildRustPackage rec {
6
6
+
name = "heatseeker-${version}";
7
7
+
version = "1.3.0";
8
8
+
9
9
+
depsSha256 = "03jap7myf85xgx9270sws8x57nl04a1wx8szrk9qx24s9vnnjcnh";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "rschmitt";
13
13
+
repo = "heatseeker";
14
14
+
rev = "v${version}";
15
15
+
sha256 = "1xdvwgmh9lwv82hv1qg82bjv2iplnvva6lzbg7dyhbszhv7rhkbl";
16
16
+
};
17
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
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
25
+
license = stdenv.lib.licenses.mit;
26
26
+
maintainers = [ maintainers.michaelpj ];
27
27
+
};
28
28
+
}
+2
pkgs/top-level/all-packages.nix
···
849
849
850
850
gmic = callPackage ../tools/graphics/gmic { };
851
851
852
852
+
heatseeker = callPackage ../tools/misc/heatseeker { };
853
853
+
852
854
mathics = pythonPackages.mathics;
853
855
854
856
mcrl = callPackage ../tools/misc/mcrl { };