about summary refs log tree commit diff
path: root/pkgs/by-name/gt
diff options
context:
space:
mode:
authorByteSudoer <ByteSudoer@users.noreply.github.com>2024-03-27 18:27:49 +0100
committerByteSudoer <ByteSudoer@users.noreply.github.com>2024-03-27 18:27:49 +0100
commit6929a7444d4ffc4e0caaff77fd9e47cb8d6d8c15 (patch)
tree64576e329aed117a66575b300e427978bcbb2812 /pkgs/by-name/gt
parent227847550ce1c3b3459063ad2b6167359b185847 (diff)
gtkhash: init at 1.5
Diffstat (limited to 'pkgs/by-name/gt')
-rw-r--r--pkgs/by-name/gt/gtkhash/package.nix54
1 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/by-name/gt/gtkhash/package.nix b/pkgs/by-name/gt/gtkhash/package.nix
new file mode 100644
index 0000000000000..63d0c788c976b
--- /dev/null
+++ b/pkgs/by-name/gt/gtkhash/package.nix
@@ -0,0 +1,54 @@
+{ lib
+, fetchFromGitHub
+, stdenv
+, meson
+, ninja
+, cmake
+, pkg-config
+, wrapGAppsHook
+, gtk3
+, glib
+, openssl
+, nettle
+, libb2
+, libgcrypt
+}:
+
+stdenv.mkDerivation rec {
+  pname = "gtkhash";
+  version = "1.5";
+
+  src = fetchFromGitHub {
+    repo = "gtkhash";
+    owner = "gtkhash";
+    rev = "v${version}";
+    hash = "sha256-XpgTolpTSsW3i0xk19tt4cn9qANoeiq7YnBBR6g8ioU=";
+  };
+
+  nativeBuildInputs = [
+    meson
+    ninja
+    cmake
+    pkg-config
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    gtk3
+    glib
+    openssl
+    nettle
+    libb2
+    libgcrypt
+  ];
+
+  strictDeps = true;
+  meta = with lib; {
+    description = "A cross-platform desktop utility for computing message digests or checksums";
+    homepage = "https://gtkhash.org";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ ByteSudoer ];
+    mainProgram = "gtkhash";
+    platforms = platforms.unix;
+  };
+}