mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
10 lines
173 B
Nix
10 lines
173 B
Nix
with import ./config.nix;
|
|
import (
|
|
mkDerivation {
|
|
name = "foo";
|
|
bla = import ./dependencies.nix {};
|
|
buildCommand = "
|
|
echo \\\"hi\\\" > $out
|
|
";
|
|
}
|
|
)
|