From 260128ce579d314dd0383f09f42bfc82b84de4ef Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 5 Feb 2022 09:23:16 -0800 Subject: [PATCH] tev: 1.22 -> 1.23 * tev: 1.22 -> 1.23 (#157949) * tev: remove unnecessary patching substituteStream(): WARNING: pattern '/usr/' doesn't match anything in file 'CMakeLists.txt' Co-authored-by: Renaud --- pkgs/applications/graphics/tev/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/graphics/tev/default.nix b/pkgs/applications/graphics/tev/default.nix index ffa76a6c07ab..7a5dde82f16a 100644 --- a/pkgs/applications/graphics/tev/default.nix +++ b/pkgs/applications/graphics/tev/default.nix @@ -5,14 +5,14 @@ stdenv.mkDerivation rec { pname = "tev"; - version = "1.22"; + version = "1.23"; src = fetchFromGitHub { owner = "Tom94"; repo = pname; rev = "v${version}"; fetchSubmodules = true; - sha256 = "sha256-WLDQaN6wHnadvp0JyUzlcZVNiSbFudmmBSNYRMaE6U4="; + sha256 = "sha256-NtnnZV/+8aUm8BkUz8Xm3aeSbOI2gNUPNfvYlwUl01Y="; }; nativeBuildInputs = [ cmake wrapGAppsHook ]; @@ -21,11 +21,6 @@ stdenv.mkDerivation rec { dontWrapGApps = true; # We also need zenity (see below) - postPatch = '' - substituteInPlace CMakeLists.txt \ - --replace "/usr/" "''${out}/" - ''; - cmakeFlags = [ "-DTEV_DEPLOY=1" # Only relevant not to append "dev" to the version ];