2008-11-24 07:10:06 -08:00
|
|
|
{pkgs}:
|
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2009-03-26 07:11:59 -07:00
|
|
|
sourceTarball = args: import ./source-tarball.nix (
|
2008-12-10 02:58:07 -08:00
|
|
|
{ inherit stdenv autoconf automake libtool;
|
2008-11-28 08:12:50 -08:00
|
|
|
} // args);
|
2008-11-24 07:10:06 -08:00
|
|
|
|
2009-03-26 07:11:59 -07:00
|
|
|
makeSourceTarball = sourceTarball; # compatibility
|
|
|
|
|
|
|
|
binaryTarball = args: import ./binary-tarball.nix (
|
|
|
|
{ inherit stdenv;
|
|
|
|
} // args);
|
|
|
|
|
2008-11-24 07:10:06 -08:00
|
|
|
nixBuild = args: import ./nix-build.nix (
|
|
|
|
{ inherit stdenv;
|
|
|
|
} // args);
|
|
|
|
|
|
|
|
coverageAnalysis = args: nixBuild (
|
|
|
|
{ inherit lcov;
|
|
|
|
doCoverageAnalysis = true;
|
|
|
|
} // args);
|
|
|
|
|
2009-03-02 05:45:48 -08:00
|
|
|
rpmBuild = args: import ./rpm-build.nix (
|
|
|
|
{ inherit vmTools;
|
|
|
|
} // args);
|
2008-11-24 16:20:51 -08:00
|
|
|
|
2009-03-02 05:45:48 -08:00
|
|
|
debBuild = args: import ./debian-build.nix (
|
|
|
|
{ inherit stdenv vmTools checkinstall;
|
2008-11-24 16:20:51 -08:00
|
|
|
} // args);
|
|
|
|
|
|
|
|
}
|