nixpkgs/nix-dist/nix-test-build.nix

13 lines
202 B
Nix
Raw Normal View History

{stdenv, getopt, src}:
derivation {
name = "nix-test-build";
system = stdenv.system;
builder = ./nix-test-build.sh;
src = src;
stdenv = stdenv;
getopt = getopt; # required by sdf2table
}