forked from lix-project/lix
be208d8e78
(cherry picked from commit 9cb287657bec5a969d8bb1678d598d9fa820e60b)
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
|
|
";
|
|
}
|
|
)
|