unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob a5d5911c89d3f8da0e038e8fd9dd1188181e7645 1551 bytes (raw)
name: gnu/packages/feh.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
 
(define-module (gnu packages feh)
  #:use-module (gnu packages)
  #:use-module (gnu packages image)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages xorg)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses))

(define-public feh
  (package
    (name "feh")
    (version "2.12")
    (home-page "https://feh.finalrewind.org/")
    (source (origin
              (method url-fetch)
              (uri (string-append home-page
                                  name "-" version  ".tar.bz2"))
              (sha256 (base32
                "0ckhidmsms2l5jycp0qf71jzmb3bpbhjq3bcgfpvfvszah7pmq30"))))
    (build-system gnu-build-system)
    (arguments 
      '(#:phases (alist-delete 'configure %standard-phases)
        #:tests? #f
        #:make-flags
          (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out")))))
    (inputs `(("imlib2" ,imlib2)
              ("curl" ,curl)
              ("libpng" ,libpng)
              ("libxt" ,libxt)
              ("libx11" ,libx11)
              ("libxinerama" ,libxinerama)))
    (synopsis "Fast and light imlib2-based image viewer")
    (description (string-append
                   "feh is an X11 image viewer aimed mostly at console users. "
                   "Unlike most other viewers, it does not have a fancy GUI, "
                   "but simply displays images. It is controlled via "
                   "commandline arguments and configurable key/mouse actions."))
    (license x11-style)))

debug log:

solving a5d5911 ...
found a5d5911 in https://yhetil.org/guix-devel/4c48d1bdc7977e98f1248ad5e9255b0430beb759.1412489062.git.ian@zenhack.net/

applying [1/1] https://yhetil.org/guix-devel/4c48d1bdc7977e98f1248ad5e9255b0430beb759.1412489062.git.ian@zenhack.net/
diff --git a/gnu/packages/feh.scm b/gnu/packages/feh.scm
new file mode 100644
index 0000000..a5d5911

1:29: trailing whitespace.
    (arguments 
Checking patch gnu/packages/feh.scm...
Applied patch gnu/packages/feh.scm cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 a5d5911c89d3f8da0e038e8fd9dd1188181e7645	gnu/packages/feh.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).