* Build Hydra with the Nix Perl bindings.

This commit is contained in:
Eelco Dolstra
2010-03-04 15:11:01 +00:00
parent b9c1f9aca7
commit 66f3547fe7
2 changed files with 20 additions and 5 deletions

View File

@ -6,7 +6,7 @@ let
tarball =
{ hydraSrc ? {outPath = ./.; rev = 1234;}
, nixpkgs ? ../../nixpkgs
, nixpkgs ? ../nixpkgs
, officialRelease ? false
}:
@ -59,15 +59,15 @@ let
build =
{ tarball ? jobs.tarball {}
, nixpkgs ? ../../nixpkgs
, system ? "i686-linux"
, nixpkgs ? ../nixpkgs
, system ? "x86_64-linux"
}:
let pkgs = import nixpkgs {inherit system;}; in
with pkgs;
let nix = nixUnstable; in
let nix = nixSqlite; in
stdenv.mkDerivation {
name = "hydra" + (if tarball ? version then "-" + tarball.version else "");