From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manolis Ragkousis Subject: [PATCH] gnu: Add GNU Mach. Date: Tue, 9 Feb 2016 12:18:42 +0200 Message-ID: <56B9BD02.4000604@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000709090200000108050806" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aT5Nk-0007Kr-Uf for guix-devel@gnu.org; Tue, 09 Feb 2016 05:18:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aT5Nk-0007A2-3I for guix-devel@gnu.org; Tue, 09 Feb 2016 05:18:52 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------000709090200000108050806 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Here is the GNU Mach package. If ok, I will push to wip-hurd. Manolis --------------000709090200000108050806 Content-Type: text/x-patch; name="0001-gnu-Add-GNU-Mach.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-gnu-Add-GNU-Mach.patch" >From 63d8cac0762393340247d96e392d417763e57b04 Mon Sep 17 00:00:00 2001 From: Manolis Ragkousis Date: Tue, 9 Feb 2016 11:59:54 +0200 Subject: [PATCH] gnu: Add GNU Mach. * gnu/packages/hurd.scm (gnumach): New variable. --- gnu/packages/hurd.scm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index 560da4d..553821b 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis +;;; Copyright © 2014, 2015, 2016 Manolis Fragkiskos Ragkousis ;;; ;;; This file is part of GNU Guix. ;;; @@ -209,3 +209,16 @@ Library for GNU/Hurd.") which are needed for both glibc and gcc") (home-page (package-home-page hurd-headers)) (license (package-license hurd-headers)))) + +(define-public gnumach + (package (inherit gnumach-headers) + (name "gnumach") + (build-system gnu-build-system) + (native-inputs + `(("mig" ,mig) + ("perl" ,perl))) + (arguments + `(#:phases %standard-phases)) + (synopsis "Microkernel of the GNU system") + (description + "GNU Mach is the microkernel upon which a GNU Hurd system is based."))) -- 2.7.0 --------------000709090200000108050806--