~ruther/guix-local

2de40d784e238d4d176704eba4eeacbca238d9c8 — Artyom V. Poptsov 10 months ago a86d7dc
gnu: bin-graph: Update to 1.0.2.

* gnu/packages/linux.scm (bin-graph): Update to 1.0.2.

Change-Id: I4023abcd346c165e177521040aec6a1e8cf499d4
1 files changed, 28 insertions(+), 31 deletions(-)

M gnu/packages/linux.scm
M gnu/packages/linux.scm => gnu/packages/linux.scm +28 -31
@@ 2580,38 2580,35 @@ graphics card on Optimus laptops.")
      (license license:gpl2))))

(define-public bin-graph
  ;; XXX: The upstream does not have tags yet.
  (let ((commit "1dd42e3e8e123e993d6c287967502c8d4b36f9ba")
        (revision "0"))
    (package
      (name "bin-graph")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/8dcc/bin-graph")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1wjkl789r7iys3nnyk813gsdxwwy2ryxgxirx5xw02lzk790dywl"))))
      (arguments
       (list #:tests? #f                ; no tests
             #:make-flags
             #~(list (string-append "CC=" #$(cc-for-target))
                     (string-append "PREFIX=" #$output)
                     (string-append "INSTALL_DIR=" #$output "/bin"))
             #:phases
             #~(modify-phases %standard-phases
                 (delete 'configure))))    ; no configure script
      (build-system gnu-build-system)
      (inputs (list libpng))
      (home-page "https://github.com/8dcc/bin-graph")
      (synopsis "Visualize binary files")
      (description
       "@code{bin-graph} provides a simple way of visualizing the different regions
  (package
    (name "bin-graph")
    (version "1.0.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/8dcc/bin-graph")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "18m71kn7f4mn7k8hxx8mr1zl35a9ri06a3p1y2mncbgr8nn3pgb0"))))
    (arguments
     (list #:tests? #f                ; no tests
           #:make-flags
           #~(list (string-append "CC=" #$(cc-for-target))
                   (string-append "PREFIX=" #$output)
                   (string-append "INSTALL_DIR=" #$output "/bin"))
           #:phases
           #~(modify-phases %standard-phases
               (delete 'configure))))    ; no configure script
    (build-system gnu-build-system)
    (inputs (list libpng))
    (home-page "https://github.com/8dcc/bin-graph")
    (synopsis "Visualize binary files")
    (description
     "@code{bin-graph} provides a simple way of visualizing the different regions
of a binary file.")
      (license license:gpl3))))
    (license license:gpl3)))

(define-public ddcci-driver-linux
  (let ((revision "0")