69f9175986
* Move test logic to scm-update.sh scripts. * Check for "git describe --long".
11 lines
156 B
Nix
11 lines
156 B
Nix
with import ./config.nix;
|
|
{ src }:
|
|
{
|
|
copy =
|
|
mkDerivation {
|
|
name = "git-input";
|
|
builder = ./scm-builder.sh;
|
|
inherit src;
|
|
};
|
|
}
|