unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 76b3c5702cc874f2282c575825032f7ea79743aa 1697 bytes (raw)
name: gnu/packages/qiv.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
52
53
 
(define-module (gnu packages qiv)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages image)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages photo)
  #:use-module (gnu packages pkg-config))


(define-public qiv
  (package
    (name "qiv")
    (version "2.3.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://spiegl.de/qiv/download/qiv-"
                           version ".tgz"))
       (sha256
        (base32 "1rlf5h67vhj7n1y7jqkm9k115nfnzpwngj3kzqsi2lg676srclv7"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
     `(("imlib2" ,imlib2)
       ("glib" ,glib)
       ("gtk+" ,gtk+-2)
       ("libtiff" ,libtiff)
       ("libexif" ,libexif)
       ("libpng" ,libpng)))
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (delete `configure))
       #:tests? #f
       #:make-flags
        (list
          "CC=gcc"
          "LCMS="
          (string-append "PREFIX=" (assoc-ref %outputs "out")))))
    (home-page "http://spiegl.de/qiv/")
    (synopsis "Graphical image viewer for X")
    (description
      "Quick Image Viewer is a very small and fast GDK/Imlib image viewer.
Features include zoom, maxpect, scale down, fullscreen, brightness/contrast/
gamma correction, slideshow, pan with keyboard and mouse, rotate left/right,
flip, delete, jump/forward/backward images, filename filter and use it to
set X desktop background.")
    (license license:gpl2)))

debug log:

solving 76b3c5702c ...
found 76b3c5702c in https://yhetil.org/guix-patches/20200324103316.GA3324@tulip/

applying [1/1] https://yhetil.org/guix-patches/20200324103316.GA3324@tulip/
diff --git a/gnu/packages/qiv.scm b/gnu/packages/qiv.scm
new file mode 100644
index 0000000000..76b3c5702c

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

index at:
100644 76b3c5702cc874f2282c575825032f7ea79743aa	gnu/packages/qiv.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).