fclones-gui: init at 0.1.0

https://github.com/pkolaczk/fclones/tree/main/fclones-gui
This commit is contained in:
figsoda 2023-06-10 19:53:55 -04:00 committed by Anderson Torres
parent 6527ea2dd1
commit 63b422acc0
2 changed files with 45 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };