11 lines
156 B
Nix
11 lines
156 B
Nix
with import ./config.nix;
|
|
{ src }:
|
|
{
|
|
copy =
|
|
mkDerivation {
|
|
name = "svn-input";
|
|
builder = ./scm-builder.sh;
|
|
inherit src;
|
|
};
|
|
}
|