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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib, fetchFromGitHub, rustPlatform, pkg-config, keybinder3, gtk3 }:
2
+
3
+
rustPlatform.buildRustPackage rec {
4
+
pname = "findex";
5
+
version = "0.7.1";
6
+
7
+
src = fetchFromGitHub {
8
+
owner = "mdgaziur";
9
+
repo = pname;
10
+
rev = "v${version}";
11
+
hash = "sha256-KaT6lEbrUelv/f9bIBW4bSCuExFu4b7XI7hcrO4mD0M=";
12
+
};
13
+
14
+
cargoHash = "sha256-7A+EF88DJrgsKPOJt2xaBnWSMkyhpFImyZmnHcyp+Dw=";
15
+
16
+
nativeBuildInputs = [
17
+
pkg-config
18
+
];
19
+
20
+
buildInputs = [
21
+
gtk3
22
+
keybinder3
23
+
];
24
+
25
+
meta = with lib; {
26
+
description = "Highly customizable application finder written in Rust and uses Gtk3";
27
+
homepage = "https://github.com/mdgaziur/findex";
28
+
license = licenses.gpl3Only;
29
+
platforms = platforms.linux;
30
+
maintainers = [ maintainers.pinkcreeper100 ];
31
+
};
32
+
}
+2
pkgs/top-level/all-packages.nix
···
7320
7321
filet = callPackage ../applications/misc/filet { };
7322
0
0
7323
findomain = callPackage ../tools/networking/findomain {
7324
inherit (darwin.apple_sdk.frameworks) Security;
7325
};
···
7320
7321
filet = callPackage ../applications/misc/filet { };
7322
7323
+
findex = callPackage ../applications/misc/findex { };
7324
+
7325
findomain = callPackage ../tools/networking/findomain {
7326
inherit (darwin.apple_sdk.frameworks) Security;
7327
};