2008-11-24 15:10:06 +00:00
|
|
|
{pkgs}:
|
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2008-11-28 16:12:50 +00:00
|
|
|
makeSourceTarball = args: import ./make-source-tarball.nix (
|
|
|
|
{ inherit autoconf automake libtool;
|
|
|
|
stdenv = stdenvNew;
|
|
|
|
} // args);
|
2008-11-24 15:10:06 +00:00
|
|
|
|
|
|
|
nixBuild = args: import ./nix-build.nix (
|
|
|
|
{ inherit stdenv;
|
|
|
|
} // args);
|
|
|
|
|
|
|
|
coverageAnalysis = args: nixBuild (
|
|
|
|
{ inherit lcov;
|
|
|
|
doCoverageAnalysis = true;
|
|
|
|
} // args);
|
|
|
|
|
2008-11-25 00:20:51 +00:00
|
|
|
rpmBuild = args: import ./rpm-build.nix vmTools args;
|
|
|
|
|
2008-11-25 02:20:41 +00:00
|
|
|
debBuild = args: import ./debian-build.nix {inherit vmTools fetchurl;} (
|
2008-11-25 00:20:51 +00:00
|
|
|
{ inherit stdenv;
|
|
|
|
} // args);
|
|
|
|
|
|
|
|
}
|