unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
blob ad6b03b5d16cf2c4079424198b73e0eacfd1d5bd 2145 bytes (raw)
name: distro/packages/util-linux.scm 	 # note: path name is non-authoritative(*)

 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
 
;;; Guix --- Nix package management from Guile.         -*- coding: utf-8 -*-
;;; Copyright (C) 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; This file is part of Guix.
;;;
;;; 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.
;;;
;;; 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 Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (distro packages util-linux)
  #:use-module (distro packages compression)
  #:use-module (distro packages ncurses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public util-linux
  (package
    (name "util-linux")
    (version "2.21")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://kernel.org/linux/utils/"
                          name "/v" version "/"
                          name "-" version ".2" ".tar.xz"))
      (sha256
       (base32
        "1rpgghf7n0zx0cdy8hibr41wvkm2qp1yvd8ab1rxr193l1jmgcir"))))
    (build-system gnu-build-system)
    (arguments `(#:configure-flags '("--disable-use-tty-group")))
    (inputs `(("zlib" ,zlib)
              ("ncurses" ,ncurses)))
    (home-page "https://www.kernel.org/pub/linux/utils/util-linux/")
    (synopsis
     "util-linux is a random collection of utilities for the Linux kernel")
    (description
     "util-linux is a random collection of utilities for the Linux kernel.")
    ;; Note that util-linux doesn't use the same license for all the
    ;; code. GPLv2+ is the default license for a code without an
    ;; explicitly defined license.
    (license '("GPLv3+" "GPLv2+" "GPLv2" "LGPLv2+"
               "BSD-original" "Expat" "Public Domain"))))

debug log:

solving ad6b03b ...
found ad6b03b in https://yhetil.org/guix-bugs/CAD15K4sT08R5mLDr33dgwmnHoGXiYzMJLrxPik6r15ZkHbA-3g@mail.gmail.com/

applying [1/1] https://yhetil.org/guix-bugs/CAD15K4sT08R5mLDr33dgwmnHoGXiYzMJLrxPik6r15ZkHbA-3g@mail.gmail.com/
diff --git a/distro/packages/util-linux.scm b/distro/packages/util-linux.scm
new file mode 100644
index 0000000..ad6b03b

Checking patch distro/packages/util-linux.scm...
Applied patch distro/packages/util-linux.scm cleanly.

index at:
100644 ad6b03b5d16cf2c4079424198b73e0eacfd1d5bd	distro/packages/util-linux.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).