mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add bin-graph.
* gnu/packages/linux.scm (bin-graph): New variable. Change-Id: I7405cbc00e038d024d035fb100473352c9a7b59d Reviewed-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Reviewed-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
36c794c0ed
commit
e4f5eb6c01
1 changed files with 34 additions and 0 deletions
|
@ -1842,6 +1842,40 @@ (define-public bbswitch-module
|
|||
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
|
||||
of a binary file.")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public ddcci-driver-linux
|
||||
(package
|
||||
(name "ddcci-driver-linux")
|
||||
|
|
Loading…
Reference in a new issue