core/pkgs/build-support/trivial-builders/test/concat-test.nix
2024-06-30 09:16:52 +01:00

25 lines
380 B
Nix

{
callPackage,
lib,
pkgs,
runCommand,
concatText,
writeText,
hello,
emptyFile,
}:
let
stri = writeText "pathToTest";
txt1 = stri "abc";
txt2 = stri hello;
res = concatText "textToTest" [
txt1
txt2
];
in
runCommand "test-concatPaths" { } ''
diff -U3 <(cat ${txt1} ${txt2}) ${res}
diff -U3 ${concatText "void" [ ]} ${emptyFile}
touch $out
''