darktable: 5.0.1 -> 5.2.0

This commit is contained in:
Mica Semrick 2025-06-21 09:59:41 -07:00
parent 2147c833c8
commit c48b594afc

View File

@ -80,12 +80,12 @@
}:
stdenv.mkDerivation rec {
version = "5.0.1";
version = "5.2.0";
pname = "darktable";
src = fetchurl {
url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz";
hash = "sha256-SpGNCU67qYPvZ6EMxxXD1+jKc4AJkgqf9l0zQXtt2YQ=";
hash = "sha256-U6Rs1G73EYSFxKv0q0B8GBY5u4Y0JD7A7R98HoKZvsY=";
};
nativeBuildInputs = [
@ -193,6 +193,10 @@ stdenv.mkDerivation rec {
)
'';
postPatch = ''
patchShebangs ./tools/generate_styles_string.sh
'';
nativeInstallCheckInputs = [
versionCheckHook
];