aboutsummaryrefslogtreecommitdiff
path: root/etc/hurd-manifest.scm
blob: cb6b82d5f8d54307ccc4ee1de2b06b4fa22d6e2d (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; 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/>.

;;; Commentary:
;;;
;;; This file defines a manifest with a selection of packages for Cuirass to
;;; build for GNU/Hurd.
;;;
;;; Code:

(use-modules (gnu)
             (gnu system hurd)
             (guix packages)
             (guix utils)
             (ice-9 match)
             (srfi srfi-1))

(use-package-modules
 autotools base bootloaders commencement compression file gawk gdb gettext gtk
 guile guile-xyz hurd less m4 package-management python ssh
 texinfo tls version-control)

(define (input->package input)
  "Return the INPUT as package, or #f."
  (match input
    ((label (and (? package?) package))
     package)
    ((label (and (? package?) package . output))
     (cons package output))
    (_ #f)))

(define guix-dependencies
  (filter-map input->package
              (fold alist-delete (package-direct-inputs guix)
                    '("glibc-utf8-locales" "graphviz" "po4a"))))

(define (package-without-tests p)
  (package/inherit p
    (arguments
     (substitute-keyword-arguments (package-arguments p)
       ((#:tests? _ #f) #f)))))

(packages->manifest
 (cons*
  ;; where it all starts
  hello

  ;; development utililities
  diffutils file findutils gawk grep gzip less m4 openssh-sans-x tar xz

  ;; development packages
  autoconf automake libtool texinfo
  gcc-toolchain gdb-minimal git-minimal gnu-make
  gettext-minimal python-minimal
  guile-3.0 guile-2.2 guile-2.0
  guile-readline guile-colorized
  guile-gnutls guile-fibers guile-json-4

  ;; ourselves!
  (package-without-tests guix)

  ;; system
  grub-minimal grub

  ;; system reconfigure
  gdk-pixbuf

  (append
   guix-dependencies
   %base-packages/hurd)))
d7fca19429cf9d38125610f46333eb02fc2d3fd'>gnu: jc: Update to 1.25.2....Oleg Pykhalov 2024-04-12gnu: go-github-com-hashicorp-go-multierror: Adjust inputs....Sharlatan Hellseher 2024-04-05gnu: atop: Update source hash....Greg Hogan 2024-04-04gnu: fiano: Update to 1.2.0....Sharlatan Hellseher 2024-04-04gnu: fiano: Refresh package style....Sharlatan Hellseher 2024-04-02gnu: greetd: Fix cross-compilation....dan 2024-03-31gnu: shepherd: Update to 0.10.4....Ludovic Courtès 2024-03-17gnu: wlgreet: Update to 0.4.1-1.7e79d60....Hilton Chain 2024-03-06gnu: go-github.com-ulikunitz-xz: Adjust name....Sharlatan Hellseher 2024-02-28Merge branch 'rust-team'...Efraim Flashner 2024-02-20gnu: rust-winapi: Move to (gnu packages crates-windows)....Efraim Flashner 2024-02-20gnu: Add rdfind....Tomás Ortín 2024-02-18gnu: Add restartd....Nicolas Graves 2024-02-13gnu: go-github.com-ulikunitz-xz: Move to golang-compression....Sharlatan Hellseher 2024-02-13gnu: go-golang-org-x-text: Move to golang-build....Sharlatan Hellseher 2024-02-05gnu: Add pam-uaccess....Hilton Chain 2024-01-11gnu: btop: Update to 1.3.0....宋文武 2024-01-07gnu: shepherd: Update to 0.10.3....Ludovic Courtès 2023-12-23gnu: swineherd: Update to 0.0.4....Ricardo Wurmus 2023-12-19gnu: hyfetch: Update to 1.4.11....Jaeme Sifat 2023-12-10gnu: inxi-minimal: Update to 3.3.31-2....Tobias Geerinckx-Rice 2023-12-03gnu: igt-gpu-tools: Update to 1.28...Gabriel Wicki 2023-11-19gnu: bfs: Update to 3.0.4....Tobias Geerinckx-Rice 2023-11-19gnu: bfs: Fix Texinfo typo....Tobias Geerinckx-Rice 2023-11-15gnu: spindle: Update to 0.13; remove input labels....Ludovic Courtès 2023-11-15gnu: spindle: Fix compilation with GCC 11....Ludovic Courtès 2023-11-15gnu: launchmon: Fix compilation with GCC 11....Ludovic Courtès 2023-10-30gnu: ansible: Update to 8.5.0....Jack Hill 2023-10-30gnu: ansible-core: Update to 2.15.5 and fix tests....Jack Hill 2023-10-26gnu: swineherd: Update to 0.0.3....Ricardo Wurmus