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
11 lines
156 B
Nix
11 lines
156 B
Nix
with import ./config.nix;
|
|
{ src }:
|
|
{
|
|
copy =
|
|
mkDerivation {
|
|
name = "svn-input";
|
|
builder = ./scm-builder.sh;
|
|
inherit src;
|
|
};
|
|
}
|