about summary refs log tree commit diff
path: root/pkgs/applications/graphics/shotwell
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2023-12-09 11:20:11 +0000
committerJan Tojnar <jtojnar@gmail.com>2023-12-09 16:32:59 +0100
commit64e3e7eeaea58240c3f6a0da1fc6cf8718f0ed2c (patch)
treef16102dc61aabe25cb9973d0192791d762c723aa /pkgs/applications/graphics/shotwell
parentb89d5dbf861550e423d346e3dd2593e5baa86457 (diff)
shotwell: 0.32.3 → 0.32.4
https://gitlab.gnome.org/GNOME/shotwell/-/compare/shotwell-0.32.3...shotwell-0.32.4
Diffstat (limited to 'pkgs/applications/graphics/shotwell')
-rw-r--r--pkgs/applications/graphics/shotwell/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 6f624747d688c..d93423e075218 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -38,13 +38,13 @@
 
 # for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "shotwell";
-  version = "0.32.3";
+  version = "0.32.4";
 
   src = fetchurl {
-    url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-    sha256 = "sha256-4AD+5bPzYseRFPDs/44is0yaKGW1nkGi2j5NxdLKLDw=";
+    url = "mirror://gnome/sources/shotwell/${lib.versions.majorMinor finalAttrs.version}/shotwell-${finalAttrs.version}.tar.xz";
+    sha256 = "sha256-3iqUUIRtHOwUxqEDA3X9SeGvJNySCtZIA0QST5zLhW8=";
   };
 
   nativeBuildInputs = [
@@ -91,7 +91,7 @@ stdenv.mkDerivation rec {
 
   passthru = {
     updateScript = gnome.updateScript {
-      packageName = pname;
+      packageName = "shotwell";
       versionPolicy = "odd-unstable";
     };
   };
@@ -103,4 +103,4 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [];
     platforms = platforms.linux;
   };
-}
+})