* gnu/packages/aidc.scm (barcode, qrencode), gnu/packages/bash.scm (bash, bash-completion), gnu/packages/busybox.scm (busybox), gnu/packages/cdrom.scm (cdparanoia), gnu/packages/cmake.scm (cmake), gnu/packages/conkeror.scm (conkeror), gnu/packages/cook.scm (cook), gnu/packages/curl.scm (curl), gnu/packages/docbook.scm (docbook-xsl), gnu/packages/enlightenment.scm (enlightenment), gnu/packages/games.scm (abbaye), gnu/packages/geeqie.scm (exiv2), gnu/packages/gimp.scm (gegl), gnu/packages/gl.scm (glu, freeglut, ftgl), gnu/packages/glib.scm (glib), gnu/packages/gnome.scm (orbit2, gconf, geocode-glib), gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base), gnu/packages/linux.scm (util-linux), gnu/packages/lisp.scm (gcl, ecl), gnu/packages/maths.scm (gnuplot, hdf5), gnu/packages/ssh.scm (dropbear), gnu/packages/web.scm (json-c): Remove tabulations and trailing white spaces or reformat to fit within 80 columns. * gnu/packages/audio.scm (aubio), gnu/packages/emacs.scm (emacs-s), gnu/packages/engineering.scm (geda-gaf), gnu/packages/games.scm (dosbox), gnu/packages/gnome.scm (gusb), gnu/packages/gtk.scm (gtk+), gnu/packages/guile.scm (guile-wisp), gnu/packages/hurd.scm (hurd-headers), gnu/packages/wm.scm (i3-wm): Adjust synopsis or description.
		
			
				
	
	
		
			187 lines
		
	
	
	
		
			6.8 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			187 lines
		
	
	
	
		
			6.8 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
;;; GNU Guix --- Functional package management for GNU
 | 
						|
;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
 | 
						|
;;;
 | 
						|
;;; This file is part of GNU Guix.
 | 
						|
;;;
 | 
						|
;;; GNU Guix is free software; you can redistribute it and/or modify it
 | 
						|
;;; under the terms of the GNU General Public License as published by
 | 
						|
;;; the Free Software Foundation; either version 3 of the License, or (at
 | 
						|
;;; your option) any later version.
 | 
						|
;;;
 | 
						|
;;; GNU Guix is distributed in the hope that it will be useful, but
 | 
						|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
;;; GNU General Public License for more details.
 | 
						|
;;;
 | 
						|
;;; You should have received a copy of the GNU General Public License
 | 
						|
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
(define-module (gnu packages hurd)
 | 
						|
  #:use-module (guix licenses)
 | 
						|
  #:use-module (guix download)
 | 
						|
  #:use-module (guix packages)
 | 
						|
  #:use-module (gnu packages)
 | 
						|
  #:use-module (guix build-system gnu)
 | 
						|
  #:use-module (gnu packages flex)
 | 
						|
  #:use-module (gnu packages bison)
 | 
						|
  #:use-module (gnu packages perl)
 | 
						|
  #:use-module (gnu packages autotools)
 | 
						|
  #:use-module (gnu packages base)
 | 
						|
  #:use-module (guix git-download))
 | 
						|
 | 
						|
(define-public gnumach-headers
 | 
						|
  (package
 | 
						|
    (name "gnumach-headers")
 | 
						|
    (version "1.6")
 | 
						|
    (source
 | 
						|
     (origin
 | 
						|
      (method url-fetch)
 | 
						|
      (uri (string-append "mirror://gnu/gnumach/gnumach-"
 | 
						|
                          version ".tar.gz"))
 | 
						|
      (sha256
 | 
						|
       (base32
 | 
						|
        "1m7xwsrv6x6gk9xi5phs104rdn9q3lr63p348vyv0dzd6r3zyncb"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    (arguments
 | 
						|
    `(#:phases (alist-replace
 | 
						|
                'install
 | 
						|
                (lambda _
 | 
						|
                  (zero?
 | 
						|
                   (system* "make" "install-data")))
 | 
						|
                (alist-delete
 | 
						|
                 'build
 | 
						|
                 %standard-phases))
 | 
						|
 | 
						|
      ;; GNU Mach supports only IA32 currently, so cheat so that we can at
 | 
						|
      ;; least install its headers.
 | 
						|
      #:configure-flags '("--build=i686-pc-gnu")
 | 
						|
 | 
						|
      #:tests? #f))
 | 
						|
    (home-page "https://www.gnu.org/software/hurd/microkernel/mach/gnumach.html")
 | 
						|
    (synopsis "GNU Mach kernel headers")
 | 
						|
    (description
 | 
						|
     "Headers of the GNU Mach kernel.")
 | 
						|
    (license gpl2+)))
 | 
						|
 | 
						|
(define-public mig
 | 
						|
  (package
 | 
						|
    (name "mig")
 | 
						|
    (version "1.6")
 | 
						|
    (source
 | 
						|
     (origin
 | 
						|
      (method url-fetch)
 | 
						|
      (uri (string-append "mirror://gnu/mig/mig-"
 | 
						|
                          version ".tar.gz"))
 | 
						|
      (sha256
 | 
						|
       (base32
 | 
						|
        "1i9qd6j5g8wsv9k9n6vpdqflyw0284wyayb2s2h7pp4yyi2jsksk"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    ;; Flex is needed both at build and run time.
 | 
						|
    (inputs `(("gnumach-headers" ,gnumach-headers)
 | 
						|
              ("flex" ,flex)))
 | 
						|
    (native-inputs
 | 
						|
     `(("flex" ,flex)
 | 
						|
       ("bison" ,bison)))
 | 
						|
    (arguments `(#:tests? #f))
 | 
						|
    (home-page "http://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html")
 | 
						|
    (synopsis "Mach 3.0 interface generator for the Hurd")
 | 
						|
    (description
 | 
						|
     "GNU MIG is the GNU distribution of the Mach 3.0 interface generator
 | 
						|
MIG, as maintained by the GNU Hurd developers for the GNU project.
 | 
						|
You need this tool to compile the GNU Mach and GNU Hurd distributions,
 | 
						|
and to compile the GNU C library for the Hurd.  Also, you will need it
 | 
						|
for other software in the GNU system that uses Mach-based inter-process
 | 
						|
communication.")
 | 
						|
    (license gpl2+)))
 | 
						|
 | 
						|
(define-public hurd-headers
 | 
						|
  (package
 | 
						|
    (name "hurd-headers")
 | 
						|
    (version "0.7")
 | 
						|
    (source (origin
 | 
						|
              (method url-fetch)
 | 
						|
              (uri (string-append "mirror://gnu/hurd/hurd-"
 | 
						|
                                  version ".tar.gz"))
 | 
						|
              (sha256
 | 
						|
               (base32
 | 
						|
                "1q2pyc16vb5plqi8hlwnnc9jk8zlifm91cavz6x7vhbwy0nh2yvh"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    (native-inputs
 | 
						|
     `(;; Autoconf shouldn't be necessary but there seems to be a bug in the
 | 
						|
       ;; build system triggering its use.
 | 
						|
       ("autoconf" ,autoconf)
 | 
						|
 | 
						|
       ("mig" ,mig)))
 | 
						|
    (arguments
 | 
						|
     `(#:phases (alist-replace
 | 
						|
                 'install
 | 
						|
                 (lambda _
 | 
						|
                   (zero? (system* "make" "install-headers" "no_deps=t")))
 | 
						|
                 (alist-delete 'build %standard-phases))
 | 
						|
 | 
						|
       #:configure-flags '(;; Pretend we're on GNU/Hurd; 'configure' wants
 | 
						|
                           ;; that.
 | 
						|
                           "--build=i686-pc-gnu"
 | 
						|
 | 
						|
                           ;; Reduce set of dependencies.
 | 
						|
                           "--without-parted")
 | 
						|
 | 
						|
       #:tests? #f))
 | 
						|
    (home-page "http://www.gnu.org/software/hurd/hurd.html")
 | 
						|
    (synopsis "GNU Hurd headers")
 | 
						|
    (description
 | 
						|
     "This package provides C headers of the GNU Hurd, used to build the GNU C
 | 
						|
Library and other user programs.")
 | 
						|
    (license gpl2+)))
 | 
						|
 | 
						|
(define-public hurd-minimal
 | 
						|
  (package (inherit hurd-headers)
 | 
						|
    (name "hurd-minimal")
 | 
						|
    (inputs `(("glibc-hurd-headers" ,glibc/hurd-headers)))
 | 
						|
    (native-inputs
 | 
						|
     `(("autoconf" ,(autoconf-wrapper))
 | 
						|
       ("mig" ,mig)))
 | 
						|
 | 
						|
    (arguments
 | 
						|
     `(#:phases (alist-replace
 | 
						|
                 'install
 | 
						|
                 (lambda* (#:key outputs #:allow-other-keys)
 | 
						|
                   (let ((out (assoc-ref outputs "out")))
 | 
						|
                     ;; We need to copy libihash.a to the output directory manually,
 | 
						|
                     ;; since there is no target for that in the makefile.
 | 
						|
                     (mkdir-p (string-append out "/include"))
 | 
						|
                     (copy-file "libihash/ihash.h"
 | 
						|
                                (string-append out "/include/ihash.h"))
 | 
						|
                     (mkdir-p (string-append out "/lib"))
 | 
						|
                     (copy-file "libihash/libihash.a"
 | 
						|
                                (string-append out "/lib/libihash.a"))
 | 
						|
                     #t))
 | 
						|
                 (alist-replace
 | 
						|
                  'build
 | 
						|
                  (lambda _
 | 
						|
                    (zero? (system* "make" "-Clibihash" "libihash.a")))
 | 
						|
                  (alist-cons-before
 | 
						|
                   'configure 'bootstrap
 | 
						|
                   (lambda _
 | 
						|
                     (zero? (system* "autoreconf" "-vfi")))
 | 
						|
                   %standard-phases)))
 | 
						|
       #:configure-flags '(;; Pretend we're on GNU/Hurd; 'configure' wants
 | 
						|
                           ;; that.
 | 
						|
                           "--host=i686-pc-gnu"
 | 
						|
 | 
						|
                           ;; Reduce set of dependencies.
 | 
						|
                           "--disable-ncursesw"
 | 
						|
                           "--disable-test"
 | 
						|
                           "--without-libbz2"
 | 
						|
                           "--without-libz"
 | 
						|
                           "--without-parted"
 | 
						|
                           ;; Skip the clnt_create check because it expects
 | 
						|
                           ;; a working glibc causing a circular dependency.
 | 
						|
                           "ac_cv_search_clnt_create=no")
 | 
						|
       #:tests? #f))
 | 
						|
    (home-page "http://www.gnu.org/software/hurd/hurd.html")
 | 
						|
    (synopsis "GNU Hurd libraries")
 | 
						|
    (description
 | 
						|
     "This package provides libihash, needed to build the GNU C
 | 
						|
Library for GNU/Hurd.")
 | 
						|
    (license gpl2+)))
 |