findex: init at v0.7.1

This commit is contained in:
pinkcreeper100 2023-01-19 19:03:49 +00:00
parent 742cdb455f
commit eec584d627
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, fetchFromGitHub, rustPlatform, pkg-config, keybinder3, gtk3 }:
rustPlatform.buildRustPackage rec {
pname = "findex";
version = "0.7.1";
src = fetchFromGitHub {
owner = "mdgaziur";
repo = pname;
rev = "v${version}";
hash = "sha256-KaT6lEbrUelv/f9bIBW4bSCuExFu4b7XI7hcrO4mD0M=";
};
cargoHash = "sha256-7A+EF88DJrgsKPOJt2xaBnWSMkyhpFImyZmnHcyp+Dw=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
gtk3
keybinder3
];
meta = with lib; {
description = "Highly customizable application finder written in Rust and uses Gtk3";
homepage = "https://github.com/mdgaziur/findex";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = [ maintainers.pinkcreeper100 ];
};
}

View File

@ -7320,6 +7320,8 @@ with pkgs;
filet = callPackage ../applications/misc/filet { };
findex = callPackage ../applications/misc/findex { };
findomain = callPackage ../tools/networking/findomain {
inherit (darwin.apple_sdk.frameworks) Security;
};