about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2022-04-05 20:05:33 +0200
committerGitHub <noreply@github.com>2022-04-05 20:05:33 +0200
commit559ac3c9e792ae905497528d22e31f9fa9df5982 (patch)
treed3acba16e06763557797a8666198e96425fb515c /nixos/tests
parentf1aa084baa724e97e8aa24b28f6d000952a31340 (diff)
parentfffabe7500e972eb5275199c82a35132a07fa29f (diff)
Merge pull request #166383 from hercules-ci/always-sanitize-derivation-name
Always sanitize derivation name
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/nixops/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/nixops/default.nix b/nixos/tests/nixops/default.nix
index f0834c51f0b4f..227b388150737 100644
--- a/nixos/tests/nixops/default.nix
+++ b/nixos/tests/nixops/default.nix
@@ -97,7 +97,7 @@ let
     derivations and all build dependency outputs, all the way down.
   */
   allDrvOutputs = pkg:
-    let name = lib.strings.sanitizeDerivationName "allDrvOutputs-${pkg.pname or pkg.name or "unknown"}";
+    let name = "allDrvOutputs-${pkg.pname or pkg.name or "unknown"}";
     in
     pkgs.runCommand name { refs = pkgs.writeReferencesToFile pkg.drvPath; } ''
       touch $out