mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add vtkdiff.
* gnu/packages/image-processing.scm (vtkdiff): New variable. Change-Id: I9d7e9ff2dbe9683177d3f5c835466d3d052289ed Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
3ac1e06f0a
commit
efa5acfe2b
1 changed files with 26 additions and 0 deletions
|
@ -487,6 +487,32 @@ integrates with various databases on GUI toolkits such as Qt and Tk.")
|
|||
(("Host system: \\@CMAKE_HOST_SYSTEM\\@")
|
||||
"Host system: @CMAKE_SYSTEM_NAME@"))))))))))
|
||||
|
||||
(define-public vktdiff
|
||||
(package
|
||||
(name "vtkdiff")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ufz/vtkdiff")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "15nwzfhgyjfvd083kw1s19xkxcds9h31hx9cr339x3bkllbj609j"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs (list tclap vtk))
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;There are no tests.
|
||||
#:configure-flags #~(list "-DGUIX_BUILD=ON")))
|
||||
(home-page "https://github.com/ufz/vtkdiff")
|
||||
(synopsis "Numerical difference of data arrays in vtk files")
|
||||
(description
|
||||
"The vtkdiff tool shall provide means of numerical comparison of
|
||||
different data arrays similar to those available in the numdiff software.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public opencv
|
||||
(package
|
||||
(name "opencv")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue