about summary refs log tree commit diff
path: root/pkgs/applications/graphics/tev
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-05 09:23:16 -0800
committerGitHub <noreply@github.com>2022-02-05 18:23:16 +0100
commit260128ce579d314dd0383f09f42bfc82b84de4ef (patch)
tree4f61f849b75f544aa71432bee8f74aa754953fa2 /pkgs/applications/graphics/tev
parent3ec88f7f43dbedc00a3e3a9d714cd839063c8d81 (diff)
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 <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/graphics/tev')
-rw-r--r--pkgs/applications/graphics/tev/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/applications/graphics/tev/default.nix b/pkgs/applications/graphics/tev/default.nix
index ffa76a6c07ab6..7a5dde82f16a5 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
   ];