gnu: bin-graph: Update to 1.0.2.

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

Change-Id: I4023abcd346c165e177521040aec6a1e8cf499d4
This commit is contained in:
Artyom V. Poptsov 2025-08-17 18:59:12 +03:00
parent a86d7dc986
commit 2de40d784e
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

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