all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 6b3b4ca0ddcb7e06626b165446b29fe9a8b2e8d7 1351 bytes (raw)
name: gnu/packages/lshw.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
 
(define-module (gnu packages lshw)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses))

(define-public lshw
  (package
    (name "lshw")
    (version "B.02.18")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://www.ezix.org/software/"
                                  "files/lshw-" version
                                  ".tar.gz"))
              (sha256
               (base32
                "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf"))))
    (build-system gnu-build-system)
    (arguments
      `(#:phases (modify-phases %standard-phases (delete 'configure));no configure
        #:tests? #f
        #:make-flags
          (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
    (synopsis "Hardware Lister (lshw)")
    (description
     "lshw (Hardware Lister) is a small tool to provide detailed
information on the hardware configuration of the machine.  It can
report exact memory configuration, firmware version, mainboard
configuration, CPU version and speed, cache configuration, bus speed,
etc. on DMI-capable x86 or EFI (IA-64) systems and on some PowerPC
machines (​PowerMac G4 is known to work).")
    (home-page "http://www.ezix.org/project/wiki/HardwareLiSter")
    (license gpl2)))

debug log:

solving 6b3b4ca0d ...
found 6b3b4ca0d in https://yhetil.org/guix/20170206172120.8966-1-boskovits@gmail.com/ ||
	https://yhetil.org/guix/20170206231310.5861-1-boskovits@gmail.com/

applying [1/1] https://yhetil.org/guix/20170206172120.8966-1-boskovits@gmail.com/
diff --git a/gnu/packages/lshw.scm b/gnu/packages/lshw.scm
new file mode 100644
index 000000000..6b3b4ca0d

Checking patch gnu/packages/lshw.scm...
Applied patch gnu/packages/lshw.scm cleanly.

skipping https://yhetil.org/guix/20170206231310.5861-1-boskovits@gmail.com/ for 6b3b4ca0d
index at:
100644 6b3b4ca0ddcb7e06626b165446b29fe9a8b2e8d7	gnu/packages/lshw.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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.