me
/
guix
Archived
1
0
Fork 0

gnu: Add specification-specreduce-data.

* gnu/packages/specifications.scm (specification-specreduce-data): New variable.

Change-Id: I269cc7eefa12dd8d207da9ac613b5793c3e24c7c
master
Sharlatan Hellseher 2024-06-14 07:56:41 +01:00
parent 9d7b6b809a
commit 2541171580
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 28 additions and 0 deletions

View File

@ -138,3 +138,31 @@ CID}).")
well-established cryptographic hash functions, addressing size + encoding
considerations.")
(license (list license:expat license:cc-by-sa3.0)))))
(define-public specification-specreduce-data
(let ((commit "dcba1c601348ee3a5797ae2d84a068d83393058e")
(revision "0"))
(package
(name "specification-specreduce-data")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/astropy/specreduce-data")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1c6mrjfykkfbbyg489h7czr65nz6bcb3gszz5xa2cg2ccs00m8ii"))))
(build-system copy-build-system)
(arguments
'(#:install-plan '(("specreduce_data/" "share/specreduce_data//"))
#:phases (modify-phases %standard-phases
(delete 'strip))))
(home-page "https://specreduce.readthedocs.io/")
(synopsis "Reference and calibration data for the reducing optical/IR spectra")
(description
"This package provides a general reference and calibration data for
spectroscopic data reduction (e.g. standard star spectra, atmospheric
extinction curves, line lists for calibration lamps).")
(license license:bsd-3))))