gnu: Add aocommon.
* gnu/packages/astronomy.scm (aocommon): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
23cc276aaa
commit
4ccd4176a2
|
@ -69,6 +69,7 @@
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -79,6 +80,33 @@
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
|
(define-public aocommon
|
||||||
|
(let ((commit "7329a075271edab8f6264db649e81e62b2b6ae5e")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "aocommon")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/aroffringa/aocommon")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32 "0qcfax6pbzs0yigy0x8xibrkk539wm2pbvjsb4lh50fybir02nix"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:install-plan
|
||||||
|
#~'(("include/aocommon" "include/aocommon"))))
|
||||||
|
(home-page "https://gitlab.com/aroffringa/aocommon")
|
||||||
|
(synopsis "Collection of functionality that is reused in astronomical applications")
|
||||||
|
(description
|
||||||
|
"This package provides source-only AOCommon collection of functionality that is
|
||||||
|
reused in several astronomical applications, such as @code{wsclean},
|
||||||
|
@code{aoflagger}, @code{DP3} and @code{everybeam}.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public calceph
|
(define-public calceph
|
||||||
(package
|
(package
|
||||||
(name "calceph")
|
(name "calceph")
|
||||||
|
|
Reference in New Issue