11 lines
173 B
Nix
11 lines
173 B
Nix
|
with import ./config.nix;
|
||
|
import (
|
||
|
mkDerivation {
|
||
|
name = "foo";
|
||
|
bla = import ./dependencies.nix {};
|
||
|
buildCommand = "
|
||
|
echo \\\"hi\\\" > $out
|
||
|
";
|
||
|
}
|
||
|
)
|