Files
doc
src
tests
jobs
basic.nix
build-output-as-input.nix
bzr-checkout-input.nix
bzr-input.nix
config.nix.in
empty-dir-builder.sh
fail.sh
git-input.nix
hg-input.nix
scm-builder.sh
succeed-with-failed.sh
svn-checkout-input.nix
svn-input.nix
Makefile.am
Setup.pm
evaluation-tests.pl
query-all-tables.pl
.gitignore
AUTHORS
COPYING
INSTALL
Makefile.am
NEWS
README
bootstrap
configure.ac
deps.nix
hydra-module.nix
release.nix
version
hydra/tests/jobs/svn-input.nix
Rob Vermaas 9f33d4c98d
2011-03-17 13:25:27 +00:00

11 lines
156 B
Nix

with import ./config.nix;
{ src }:
{
copy =
mkDerivation {
name = "svn-input";
builder = ./scm-builder.sh;
inherit src;
};
}