mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add innoextract.
* gnu/packages/compression.scm (innoextract): New variable.
This commit is contained in:
parent
0e8054e8e8
commit
e294c05ee6
1 changed files with 28 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
||||||
;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
|
;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
|
||||||
;;; Copyright © 2017 Petter <petter@mykolab.ch>
|
;;; Copyright © 2017 Petter <petter@mykolab.ch>
|
||||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
|
;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -52,6 +53,7 @@ (define-module (gnu packages compression)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages backup)
|
#:use-module (gnu packages backup)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
#:use-module (gnu packages boost)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages file)
|
#:use-module (gnu packages file)
|
||||||
|
@ -2051,3 +2053,29 @@ (define-public plzip
|
||||||
single-member files which can't be decompressed in parallel.")
|
single-member files which can't be decompressed in parallel.")
|
||||||
(license (list license:bsd-2 ; arg_parser.{cc,h}
|
(license (list license:bsd-2 ; arg_parser.{cc,h}
|
||||||
license:gpl2+)))) ; everything else
|
license:gpl2+)))) ; everything else
|
||||||
|
|
||||||
|
(define-public innoextract
|
||||||
|
(package
|
||||||
|
(name "innoextract")
|
||||||
|
(version "1.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/dscharrer/innoextract/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"08sp5vbfjvq1irhhraqkn5m2x1z209r4axhx7laf1adcw30ccapi"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)) ;; No tests available.
|
||||||
|
(inputs `(("boost" ,boost)
|
||||||
|
("libiconv" ,libiconv)
|
||||||
|
("xz" ,xz)))
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "https://constexpr.org/innoextract/")
|
||||||
|
(synopsis "Tool for extracting Inno Setup installers")
|
||||||
|
(description "innoextract allows extracting Inno Setup installers under
|
||||||
|
non-Windows systems without running the actual installer using wine.")
|
||||||
|
(license license:zlib)))
|
||||||
|
|
Loading…
Reference in a new issue