unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 91581a206ebe5585ff5acb736690c5b7a65e755b 1570 bytes (raw)
name: gnu/packages/qdirstat.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
 
(define-module (qdirstat)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages compression)
  #:use-module (guix build-system gnu)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages))


(define-public qdirstat
  (package
    (name "qdirstat")
    (version "1.6.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/shundhammer/qdirstat.git")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0q77a347qv1aka6sni6l03zh5jzyy9s74aygg554r73g01kxczpb"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (replace 'configure
           (lambda* (#:key outputs #:allow-other-keys)
             (invoke "qmake"
                     (string-append "PREFIX="
                                    (assoc-ref outputs "out"))
                     (string-append "INSTALL_PREFIX="
                                    (assoc-ref outputs "out"))))))))

    (inputs
     `(("qtbase" ,qtbase)))
    (native-inputs
     `(("zlib" ,zlib)
       ("qttools" ,qttools)))
    (home-page "https://github.com/shundhammer/qdirstat")
    (synopsis "Graphical disk space inspection utility")
    (description
     "QDirStat is a graphical application to show where your disk space has
gone and to help you to clean it up.  Shaded boxes represent files and files
are grouped by directory structure."  )
    (license license:gpl2+)))

debug log:

solving 91581a206e ...
found 91581a206e in https://yhetil.org/guix-patches/27uwM7nMqpAz-RfKtxXzIOJWs0UnmDO3vqxoqkN1VeXR7GHQJTCgM5B0f8bCMuG2y5QsbCDj_AScqxM-4c1NO5YTf-ZAg3psDt-_FC27LJI=@protonmail.com/

applying [1/1] https://yhetil.org/guix-patches/27uwM7nMqpAz-RfKtxXzIOJWs0UnmDO3vqxoqkN1VeXR7GHQJTCgM5B0f8bCMuG2y5QsbCDj_AScqxM-4c1NO5YTf-ZAg3psDt-_FC27LJI=@protonmail.com/
diff --git a/gnu/packages/qdirstat.scm b/gnu/packages/qdirstat.scm
new file mode 100644
index 0000000000..91581a206e

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

index at:
100644 91581a206ebe5585ff5acb736690c5b7a65e755b	gnu/packages/qdirstat.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).