nixos/tests/nixops: Remove sanitizeDerivationName
This commit is contained in:
parent
c39eff52dc
commit
04c9dd89bf
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ let
|
||||||
derivations and all build dependency outputs, all the way down.
|
derivations and all build dependency outputs, all the way down.
|
||||||
*/
|
*/
|
||||||
allDrvOutputs = pkg:
|
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
|
in
|
||||||
pkgs.runCommand name { refs = pkgs.writeReferencesToFile pkg.drvPath; } ''
|
pkgs.runCommand name { refs = pkgs.writeReferencesToFile pkg.drvPath; } ''
|
||||||
touch $out
|
touch $out
|
||||||
|
|
Loading…
Reference in a new issue