2008-11-24 15:10:06 +00:00
|
|
|
{pkgs}:
|
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2009-03-26 14:11:59 +00:00
|
|
|
sourceTarball = args: import ./source-tarball.nix (
|
2008-12-10 10:58:07 +00:00
|
|
|
{ inherit stdenv autoconf automake libtool;
|
2008-11-28 16:12:50 +00:00
|
|
|
} // args);
|
2008-11-24 15:10:06 +00:00
|
|
|
|
2009-03-26 14:11:59 +00:00
|
|
|
makeSourceTarball = sourceTarball; # compatibility
|
|
|
|
|
|
|
|
binaryTarball = args: import ./binary-tarball.nix (
|
|
|
|
{ inherit stdenv;
|
|
|
|
} // 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);
|
|
|
|
|
2009-03-02 13:45:48 +00:00
|
|
|
rpmBuild = args: import ./rpm-build.nix (
|
|
|
|
{ inherit vmTools;
|
|
|
|
} // args);
|
2008-11-25 00:20:51 +00:00
|
|
|
|
2009-03-02 13:45:48 +00:00
|
|
|
debBuild = args: import ./debian-build.nix (
|
|
|
|
{ inherit stdenv vmTools checkinstall;
|
2008-11-25 00:20:51 +00:00
|
|
|
} // args);
|
|
|
|
|
|
|
|
}
|