mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
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
|
||
|
";
|
||
|
}
|
||
|
)
|