From 0cf8a8155bbb8937a93d400a018d5ea279a5b553 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Sun, 20 Mar 2022 19:30:49 +0100 Subject: [PATCH] sfxr-qt: 1.4.0 -> 1.5.0 --- pkgs/applications/audio/sfxr-qt/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/sfxr-qt/default.nix b/pkgs/applications/audio/sfxr-qt/default.nix index bf8b826f544f..636a67824c53 100644 --- a/pkgs/applications/audio/sfxr-qt/default.nix +++ b/pkgs/applications/audio/sfxr-qt/default.nix @@ -1,6 +1,7 @@ { lib , mkDerivation , fetchFromGitHub +, fetchpatch , cmake , extra-cmake-modules , qtbase @@ -11,16 +12,23 @@ mkDerivation rec { pname = "sfxr-qt"; - version = "1.4.0"; + version = "1.5.0"; src = fetchFromGitHub { owner = "agateau"; repo = "sfxr-qt"; rev = version; - sha256 = "sha256-Mn+wcwu70BwsTLFlc12sOOe6U1AJ8hR7bCIPlPnCooE="; + sha256 = "sha256-Ce5NJe1f+C4pPmtenHYvtkxste+nPuxJoB+N7K2nyRo="; fetchSubmodules = true; }; + # Remove on next release + patches = [(fetchpatch { + name = "sfxr-qr-missing-qpainterpath-include"; + url = "https://github.com/agateau/sfxr-qt/commit/ef051f473654052112b647df987eb263e38faf47.patch"; + sha256 = "sha256-bqMnxHUzdS5oG/2hfr5MvkpwrtZW+GTN5fS2WpV2W2c="; + })]; + nativeBuildInputs = [ cmake extra-cmake-modules