From 7805607cf79058275e1bacd1cf32a8f9dcef8326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=23R=CE=BBatan?= Date: Tue, 5 Jan 2021 00:23:38 +0000 Subject: [PATCH] Add new gnu/packages/image-processing.scm stiff --- gnu/packages/image-processing.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index 8d31029963..38cb954c07 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2020 Vinicius Monego ;;; Copyright © 2020 Pierre Neidhardt ;;; Copyright © 2020 Brendan Tildesley +;;; Copyright © 2021 Oleh Malyi ;;; ;;; This file is part of GNU Guix. ;;; @@ -1064,3 +1065,26 @@ this project. Scan Tailer Advanced is a fork of Scan Tailer that merges Scan Tailor Featured and Scan Tailor Enhanced versions as well as including many more bug fixes.") (license license:gpl3+)))) + +(define-public stiff + (package + (name "stiff") + (version "2.4.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.astromatic.net/download/stiff/stiff-" + version ".tar.gz")) + (sha256 + (base32 "14m92dskzw7bwsr64ha4p0mj3ndv13gwcbfic3qxrs3zq5353s7l")))) + (build-system gnu-build-system) + (inputs + `(("libtiff" ,libtiff) + ("zlib" ,zlib) + ("libjpeg-turbo" ,libjpeg-turbo))) + (home-page "https://www.astromatic.net/software/stiff") + (synopsis "STIFF converts scientific FITS images to TIFF format") + (description + "STIFF is a program that converts scientific FITS images to the more +popular TIFF format for illustration purposes.") + (license license:gpl3))) -- 2.26.2