Add a test for darcs inputs.

This commit is contained in:
Petr Rockai
2013-07-10 11:50:24 +02:00
parent d31e4469bb
commit 66f3e60e2a
5 changed files with 45 additions and 4 deletions

View File

@ -0,0 +1,10 @@
with import ./config.nix;
{ src }:
{
copy =
mkDerivation {
name = "git-input";
builder = ./scm-builder.sh;
inherit src;
};
}