about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-04-10 09:06:26 +0200
committerGitHub <noreply@github.com>2024-04-10 09:06:26 +0200
commite7ed94636e62cbd793d36a182f826795c0c92fe3 (patch)
treef90d6f4ea1c5afe614248db89eeb9701880acf05 /pkgs/os-specific
parent1064f8712509d023d9fef1b14e6129d455bceb7d (diff)
parent30762f89b041dbd6e88b50510b3b59ba06a3301a (diff)
Merge pull request #302557 from anthonyroussel/anthonyroussel-stdenvnocc
tomb,win-pvdrivers,tomcat,axis2,jetty: use stdenvNoCC
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/tomb/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/tomb/default.nix b/pkgs/os-specific/linux/tomb/default.nix
index 9c97377cfe04f..98dd9bc1dbca0 100644
--- a/pkgs/os-specific/linux/tomb/default.nix
+++ b/pkgs/os-specific/linux/tomb/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ stdenvNoCC
 , lib
 , fetchFromGitHub
 , substituteAll
@@ -20,7 +20,7 @@
 , nix-update-script
 }:
 
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
   pname = "tomb";
   version = "2.10";
 
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
   postPatch = ''
     # if not, it shows .tomb-wrapped when running
     substituteInPlace tomb \
-      --replace 'TOMBEXEC=$0' 'TOMBEXEC=tomb'
+      --replace-fail 'TOMBEXEC=$0' 'TOMBEXEC=tomb'
   '';
 
   installPhase = ''