mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
5722f9690c
Issue #3373.
23 lines
463 B
Nix
23 lines
463 B
Nix
with import ./config.nix;
|
|
|
|
let
|
|
|
|
input1 = mkDerivation {
|
|
name = "build-hook-input-1";
|
|
buildCommand = "mkdir $out; echo FOO > $out/foo";
|
|
requiredSystemFeatures = ["foo"];
|
|
};
|
|
|
|
input2 = mkDerivation {
|
|
name = "build-hook-input-2";
|
|
buildCommand = "mkdir $out; echo BAR > $out/bar";
|
|
};
|
|
|
|
in
|
|
|
|
mkDerivation {
|
|
name = "build-hook";
|
|
builder = ./dependencies.builder0.sh;
|
|
input1 = " " + input1 + "/.";
|
|
input2 = " ${input2}/.";
|
|
}
|