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>
This commit is contained in:
R. RyanTM
2022-02-05 18:23:16 +01:00
committed by GitHub
co-authored by Renaud
parent 3ec88f7f43
commit 260128ce57
+2 -7
View File
@@ -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
];