Skip to content

Commit

Permalink
shotwell: 0.31.3 -> 0.30.14
Browse files Browse the repository at this point in the history
  • Loading branch information
lovesegfault committed Oct 14, 2021
1 parent b0fcb83 commit b7451b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/graphics/shotwell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@

stdenv.mkDerivation rec {
pname = "shotwell";
version = "0.31.3";
version = "0.30.14";

src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1wkahbnnfxmi1jc5zmm3h761nrnkdks8lk0rj38bfkwg90h6zqwd";
sha256 = "sha256-McLkgzkI02GcssNnWgXw2lnCuqduKLkFOF/VbADBKJU=";
};

nativeBuildInputs = [
Expand Down

2 comments on commit b7451b5

@rycee
Copy link
Member

@rycee rycee commented on b7451b5 Feb 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Am I the only one having issues with this version change?
shotwell

@rycee
Copy link
Member

@rycee rycee commented on b7451b5 Feb 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In case anybody else has this issue you can recover 0.31.2 in NixOS 21.11 using this patch:

diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 56d41d3dd50..7a6ab56a6da 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -8,7 +8,7 @@
 , libwebp
 , libsoup
 , libxml2
-, vala
+, vala_0_52
 , sqlite
 , webkitgtk
 , pkg-config
@@ -41,17 +41,17 @@
 
 stdenv.mkDerivation rec {
   pname = "shotwell";
-  version = "0.30.14";
+  version = "0.31.2";
 
   src = fetchurl {
     url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-    sha256 = "sha256-McLkgzkI02GcssNnWgXw2lnCuqduKLkFOF/VbADBKJU=";
+    sha256 = "0ywzr6vgcz8yy60v0jp55na9lgqi4dbh2vakfphkcml1gpah0r2l";
   };
 
   nativeBuildInputs = [
     meson
     ninja
-    vala
+    vala_0_52
     pkg-config
     itstool
     gettext

Please sign in to comment.