Add eval test for specific git revision

This commit is contained in:
Shea Levy
2016-04-12 16:27:11 -04:00
parent 49f94bac3a
commit 10e036238c
3 changed files with 49 additions and 1 deletions

View File

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