fclones-gui: init at 0.1.0
https://github.com/pkolaczk/fclones/tree/main/fclones-gui
This commit is contained in:
parent
6527ea2dd1
commit
63b422acc0
43
pkgs/tools/misc/fclones/gui.nix
Normal file
43
pkgs/tools/misc/fclones/gui.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, pkg-config
|
||||
, wrapGAppsHook4
|
||||
, gdk-pixbuf
|
||||
, gtk4
|
||||
, libadwaita
|
||||
, stdenv
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fclones-gui";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-rMeXUNpoEzqsDmlTmnHsFkas3zFgdCH0WSeP83RtT+c=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-2oeyTMYg0PyTpSMLaub3nZGeoK5U6BlC8OReBwRi3DA=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
wrapGAppsHook4
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gdk-pixbuf
|
||||
gtk4
|
||||
libadwaita
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk_11_0.frameworks.IOKit
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Interactive duplicate file remover";
|
||||
homepage = "https://github.com/pkolaczk/fclones/tree/main/fclones-gui";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -30843,6 +30843,8 @@ with pkgs;
|
||||
|
||||
fclones = callPackage ../tools/misc/fclones { };
|
||||
|
||||
fclones-gui = darwin.apple_sdk_11_0.callPackage ../tools/misc/fclones/gui.nix { };
|
||||
|
||||
fcp = callPackage ../tools/misc/fcp { };
|
||||
|
||||
fdupes = callPackage ../tools/misc/fdupes { };
|
||||
|
Loading…
Reference in New Issue
Block a user