Advertisement
Guest User

geographiclib package definition

a guest
Dec 26th, 2023
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.94 KB | None | 0 0
  1. (define-public geographiclib
  2.   (let ((branch "master")
  3.         (commit "1b0be832df51665ebe943f6d4d72eabc0de1bb92"))
  4.   (package
  5.     (name "geographiclib")
  6.     (version (git-version "2.3" branch commit))
  7.     (source
  8.       (origin
  9.         (method git-fetch)
  10.         (uri (git-reference
  11.               (url "https://github.com/geographiclib/geographiclib.git")
  12.               (commit commit)))
  13.         (file-name (git-file-name name version))
  14.         (sha256 (base32 "0n011zxlzilv0cqm5p5nlap3riai884pjndl4bxvqsdh77gy6izc"))))
  15.     (native-inputs
  16.      (list gcc-toolchain-13 libtool autoconf-2.71 sed config automake autobuild autoconf-archive gnu-make))
  17.     (build-system gnu-build-system)
  18.     (home-page "https://github.com/geographiclib/geographiclib")
  19.     (synopsis "GeographicLib is a small C++ library for geodaesic calculations")
  20.     (description "GeographicLib is a small C++ library for geodaesic calculations")
  21.     (license license:expat))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement