nixpkgs/nix-dist/nix-test-build.nix
Eelco Dolstra be3479234b * Build the source distribution before uploading it.
svn path=/nixpkgs/trunk/; revision=569
2003-12-02 13:04:21 +00:00

13 lines
202 B
Nix

{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
}