all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 65b3829b99ff78a84528c8b9bdd38ac0092f0371 1832 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
47
48
49
 
(define-module (gnu packages qdirstat)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages qt)
  #:use-module (guix build-system gnu)
  #:use-module (guix git-download)
  #:use-module (guix packages)
  #:use-module ((guix licenses) #:prefix license:))


(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"))))

    (outputs `("out"))			; "cache-writer" could be made an output
    (inputs
     `(("qtbase" ,qtbase)		; Could add ("perl" ,perl) as an input
       ("zlib" ,zlib)))			; for the cache-writer see debbug#41040
    (native-inputs
     `(("qttools" ,qttools)))
    (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"))))))))

    (home-page "https://github.com/shundhammer/qdirstat")
    (synopsis "Graphical disk space inspection utility")
    (description
     "QDirStat is a graphical application for analysing disk usage.  It shows
where your disk space has gone and helps you clean it up.  Shaded boxes
represent files and files are grouped by directory structure.")
    (license (list license:gpl2+
                   license:non-copyleft)))) ; scripts/qdirstat-cache-writer

debug log:

solving 8188357855 ...
found 8188357855 in https://yhetil.org/guix/zAApckKRhqvy2njcWIMRnuUCNPFhXjm8fmOPU63f2CiFaXZY21i30yHZ1MUcnKXngDew7bcus_Z72EFO4L5Ty3z1rc-Bbj24AB6y-QXCx5o=@protonmail.com/

applying [1/1] https://yhetil.org/guix/zAApckKRhqvy2njcWIMRnuUCNPFhXjm8fmOPU63f2CiFaXZY21i30yHZ1MUcnKXngDew7bcus_Z72EFO4L5Ty3z1rc-Bbj24AB6y-QXCx5o=@protonmail.com/
diff --git a/gnu/packages/qdirstat.scm b/gnu/packages/qdirstat.scm
new file mode 100644
index 0000000000..8188357855

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

index at:
100644 65b3829b99ff78a84528c8b9bdd38ac0092f0371	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 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.