forked from M-Labs/nix-scripts
6 lines
114 B
Nix
6 lines
114 B
Nix
{ pkgs ? import <nixpkgs> {}, mainBuild}:
|
|
|
|
{
|
|
foo = pkgs.runCommand "xxxxabcd" { } "echo ${mainBuild} > $out";
|
|
}
|