1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-18 11:18:27 +02:00

Merge branch '2.18-maintenance' into ifd-buildStore-2.18

This commit is contained in:
Shea Levy 2024-01-11 07:21:16 -05:00
commit ba48ab4b95
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
685 changed files with 680 additions and 841 deletions

10
tests/functional/ifd.nix Normal file
View file

@ -0,0 +1,10 @@
with import ./config.nix;
import (
mkDerivation {
name = "foo";
bla = import ./dependencies.nix {};
buildCommand = "
echo \\\"hi\\\" > $out
";
}
)