forked from lix-project/hydra
11 lines
157 B
Nix
11 lines
157 B
Nix
|
with import ./config.nix;
|
||
|
{ src }:
|
||
|
{
|
||
|
copy =
|
||
|
mkDerivation {
|
||
|
name = "git-rev-input";
|
||
|
builder = ./scm-builder.sh;
|
||
|
inherit src;
|
||
|
};
|
||
|
}
|