diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2013-09-28 16:12:03 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-28 16:12:14 +0200 |
| commit | 6703f3de7d3d8cba5fc100ec0fd0d6abe446f77f (patch) | |
| tree | 11217751356ee0930286b1e16317328cd15b7304 | |
| parent | 95393ae7123c1e45bfbce0bde475b73ff64be0a4 (diff) | |
| download | hydra-recipes-6703f3de7d3d8cba5fc100ec0fd0d6abe446f77f.tar.gz | |
gnumach, hurd: Add Perl as an input to the 'tarball' job.
| -rw-r--r-- | gnumach/release.nix | 4 | ||||
| -rw-r--r-- | hurd/release.nix | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gnumach/release.nix b/gnumach/release.nix index 1b14087..7149baf 100644 --- a/gnumach/release.nix +++ b/gnumach/release.nix @@ -1,5 +1,5 @@ /* Continuous integration of GNU with Hydra/Nix. - Copyright (C) 2011, 2012 Ludovic Courtès <ludo@gnu.org> + Copyright (C) 2011, 2012, 2013 Ludovic Courtès <ludo@gnu.org> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -54,7 +54,7 @@ let releaseTools.sourceTarball { name = "gnumach"; src = machSrc; - buildInputs = [ pkgs.texinfo ]; + buildInputs = with pkgs; [ texinfo perl ]; configureFlags = [ "--build=i586-pc-gnu" ]; # cheat inherit meta succeedOnFailure keepBuildDirectory; }; diff --git a/hurd/release.nix b/hurd/release.nix index 8043331..62ed59a 100644 --- a/hurd/release.nix +++ b/hurd/release.nix @@ -1,5 +1,5 @@ /* Continuous integration of GNU with Hydra/Nix. - Copyright (C) 2010, 2011, 2012 Ludovic Courtès <ludo@gnu.org> + Copyright (C) 2010, 2011, 2012, 2013 Ludovic Courtès <ludo@gnu.org> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -100,7 +100,7 @@ let configureFlags = "--build=i586-pc-gnu"; # cheat nativeBuildInputs = with pkgs; - [ git gnu.machHeaders gnu.mig texinfo ]; + [ git perl gnu.machHeaders gnu.mig texinfo ]; buildInputs = with pkgs; [ parted /* not the cross-GNU one */ libuuid |
