about summary refs log tree commit diff
path: root/pkgs/applications/graphics/paleta
diff options
context:
space:
mode:
authorzendo <linzway@qq.com>2023-02-28 10:58:38 +0800
committerzendo <linzway@qq.com>2023-02-28 10:58:38 +0800
commit3b8e89569b430dfda49fb37d8896338046c84124 (patch)
treedcd36fd621788302071e037e58b1d105e79bfccb /pkgs/applications/graphics/paleta
parent30e272bc047dfa347315e9fe9bcb10a9cf1e0865 (diff)
paleta: init at 0.3.1
Diffstat (limited to 'pkgs/applications/graphics/paleta')
-rw-r--r--pkgs/applications/graphics/paleta/default.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/paleta/default.nix b/pkgs/applications/graphics/paleta/default.nix
new file mode 100644
index 0000000000000..4030cf4439a1c
--- /dev/null
+++ b/pkgs/applications/graphics/paleta/default.nix
@@ -0,0 +1,59 @@
+{ lib
+, stdenv
+, rustPlatform
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, wrapGAppsHook4
+, appstream-glib
+, desktop-file-utils
+, glib
+, gtk4
+, libadwaita
+}:
+
+stdenv.mkDerivation rec {
+  pname = "paleta";
+  version = "0.3.1";
+
+  src = fetchFromGitHub {
+    owner = "nate-xyz";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-c+X49bMywstRg7cSAbbpG/vd8OUB7RhdQVRumTIBDDk=";
+  };
+
+  cargoDeps = rustPlatform.fetchCargoTarball {
+    inherit src;
+    name = "${pname}-${version}";
+    hash = "sha256-2/ZfKvlvAY4pfUU3F9pEw+OR5oRSsSAAi3/W5x4zVs0=";
+  };
+
+  nativeBuildInputs = [
+    meson
+    ninja
+    pkg-config
+    wrapGAppsHook4
+    appstream-glib
+    desktop-file-utils
+  ] ++ (with rustPlatform; [
+    cargoSetupHook
+    rust.cargo
+    rust.rustc
+  ]);
+
+  buildInputs = [
+    glib
+    gtk4
+    libadwaita
+  ];
+
+  meta = with lib; {
+    description = "Extract the dominant colors from any image";
+    homepage = "https://github.com/nate-xyz/paleta";
+    license = licenses.gpl3Only;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ zendo ];
+  };
+}