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