about summary refs log tree commit diff
path: root/pkgs/by-name/cz/czkawka/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/cz/czkawka/package.nix')
-rw-r--r--pkgs/by-name/cz/czkawka/package.nix88
1 files changed, 88 insertions, 0 deletions
diff --git a/pkgs/by-name/cz/czkawka/package.nix b/pkgs/by-name/cz/czkawka/package.nix
new file mode 100644
index 000000000000..f1f3fce9189a
--- /dev/null
+++ b/pkgs/by-name/cz/czkawka/package.nix
@@ -0,0 +1,88 @@
+{ lib
+, stdenv
+, atk
+, cairo
+, czkawka
+, darwin
+, fetchFromGitHub
+, gdk-pixbuf
+, glib
+, gobject-introspection
+, gtk4
+, pango
+, pkg-config
+, rustPlatform
+, testers
+, wrapGAppsHook4
+, xvfb-run
+}:
+
+let
+  pname = "czkawka";
+  version = "6.1.0";
+
+  src = fetchFromGitHub {
+    owner = "qarmin";
+    repo = "czkawka";
+    rev = version;
+    hash = "sha256-uKmiBNwuu3Eduf0v3p2VYYNf6mgxJTBUsYs+tKZQZys=";
+  };
+  cargoHash = "sha256-iBO99kpITVl7ySlXPkEg2YecS1lonVx9CbKt9WI180s=";
+in
+rustPlatform.buildRustPackage {
+  inherit pname version src cargoHash;
+
+  nativeBuildInputs = [
+    gobject-introspection
+    pkg-config
+    wrapGAppsHook4
+  ];
+
+  buildInputs = [
+    atk
+    cairo
+    gdk-pixbuf
+    glib
+    gtk4
+    pango
+  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
+    darwin.apple_sdk.frameworks.Foundation
+  ];
+
+  nativeCheckInputs = [
+    xvfb-run
+  ];
+
+  strictDeps = true;
+
+  checkPhase = ''
+    runHook preCheck
+    xvfb-run cargo test
+    runHook postCheck
+  '';
+
+  doCheck = stdenv.hostPlatform.isLinux
+          && (stdenv.hostPlatform == stdenv.buildPlatform);
+
+  passthru.tests.version = testers.testVersion {
+    package = czkawka;
+    command = "czkawka_cli --version";
+  };
+
+  # Desktop items, icons and metainfo are not installed automatically
+  postInstall = ''
+    install -Dm444 -t $out/share/applications data/com.github.qarmin.czkawka.desktop
+    install -Dm444 -t $out/share/icons/hicolor/scalable/apps data/icons/com.github.qarmin.czkawka.svg
+    install -Dm444 -t $out/share/icons/hicolor/scalable/apps data/icons/com.github.qarmin.czkawka-symbolic.svg
+    install -Dm444 -t $out/share/metainfo data/com.github.qarmin.czkawka.metainfo.xml
+  '';
+
+  meta = {
+    changelog = "https://github.com/qarmin/czkawka/raw/${version}/Changelog.md";
+    description = "A simple, fast and easy to use app to remove unnecessary files from your computer";
+    homepage = "https://github.com/qarmin/czkawka";
+    license = with lib.licenses; [ mit ];
+    mainProgram = "czkawka_gui";
+    maintainers = with lib.maintainers; [ AndersonTorres yanganto _0x4A6F ];
+  };
+}