tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
findex: init at v0.7.1
pinkcreeper100
3 years ago
eec584d6
742cdb45
+34
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
findex
default.nix
top-level
all-packages.nix
+32
pkgs/applications/misc/findex/default.nix
···
1
1
+
{ lib, fetchFromGitHub, rustPlatform, pkg-config, keybinder3, gtk3 }:
2
2
+
3
3
+
rustPlatform.buildRustPackage rec {
4
4
+
pname = "findex";
5
5
+
version = "0.7.1";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "mdgaziur";
9
9
+
repo = pname;
10
10
+
rev = "v${version}";
11
11
+
hash = "sha256-KaT6lEbrUelv/f9bIBW4bSCuExFu4b7XI7hcrO4mD0M=";
12
12
+
};
13
13
+
14
14
+
cargoHash = "sha256-7A+EF88DJrgsKPOJt2xaBnWSMkyhpFImyZmnHcyp+Dw=";
15
15
+
16
16
+
nativeBuildInputs = [
17
17
+
pkg-config
18
18
+
];
19
19
+
20
20
+
buildInputs = [
21
21
+
gtk3
22
22
+
keybinder3
23
23
+
];
24
24
+
25
25
+
meta = with lib; {
26
26
+
description = "Highly customizable application finder written in Rust and uses Gtk3";
27
27
+
homepage = "https://github.com/mdgaziur/findex";
28
28
+
license = licenses.gpl3Only;
29
29
+
platforms = platforms.linux;
30
30
+
maintainers = [ maintainers.pinkcreeper100 ];
31
31
+
};
32
32
+
}
+2
pkgs/top-level/all-packages.nix
···
7320
7320
7321
7321
filet = callPackage ../applications/misc/filet { };
7322
7322
7323
7323
+
findex = callPackage ../applications/misc/findex { };
7324
7324
+
7323
7325
findomain = callPackage ../tools/networking/findomain {
7324
7326
inherit (darwin.apple_sdk.frameworks) Security;
7325
7327
};