GNU Mach, GNU Hurd: Add `-headers' in the name when asking for headers only.

svn path=/nixpkgs/trunk/; revision=21898
This commit is contained in:
Ludovic Courtès 2010-05-19 21:28:28 +00:00
parent b9e28b8a8e
commit 89b9d2af52
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ let
rev = "master@{${date}}";
in
stdenv.mkDerivation ({
name = "hurd-${date}";
name = "hurd${if headersOnly then "-headers" else ""}-${date}";
src = fetchgit {
url = "git://git.sv.gnu.org/hurd/hurd.git";

View file

@ -8,7 +8,7 @@ let
rev = "master@{${date}}";
in
stdenv.mkDerivation ({
name = "gnumach-${date}";
name = "gnumach${if headersOnly then "-headers" else ""}-${date}";
src = fetchgit {
url = "git://git.sv.gnu.org/hurd/gnumach.git";