mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
f29e7867a9
This reverts commitaeffdeffc8
, reversing changes made to723fdeb4f1
.
18 lines
290 B
Nix
18 lines
290 B
Nix
with import ./config.nix;
|
|
|
|
mkDerivation {
|
|
name = "gc-runtime";
|
|
builder =
|
|
# Test inline source file definitions.
|
|
builtins.toFile "builder.sh" ''
|
|
mkdir $out
|
|
|
|
cat > $out/program <<EOF
|
|
#! ${shell}
|
|
sleep 10000
|
|
EOF
|
|
|
|
chmod +x $out/program
|
|
'';
|
|
}
|