10 lines
157 B
Nix
10 lines
157 B
Nix
|
{ src }:
|
||
|
{
|
||
|
copy =
|
||
|
derivation {
|
||
|
name = "bzr-checkout-input";
|
||
|
system = builtins.currentSystem;
|
||
|
builder = ./scm-builder.sh;
|
||
|
};
|
||
|
}
|