mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add icoutils.
* gnu/packages/image.scm (icoutils): New variable.
This commit is contained in:
parent
170c6b0344
commit
1413891250
1 changed files with 36 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
|||
;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
||||
;;; Copyright © 2017 ng0 <ng0@n0.is>
|
||||
;;; Copyright © 2017,2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2017,2019,2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
|
||||
|
@ -69,10 +69,11 @@ (define-module (gnu packages image)
|
|||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages sphinx)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
|
@ -1900,3 +1901,36 @@ (define-public lodepng
|
|||
no dependency or linkage required. It's made for C (ISO C90), and has a C++
|
||||
wrapper with a more convenient interface on top.")
|
||||
(license license:zlib))))
|
||||
|
||||
(define-public icoutils
|
||||
(package
|
||||
(name "icoutils")
|
||||
(version "0.32.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://savannah/icoutils/icoutils-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32 "1q66cksms4l62y0wizb8vfavhmf7kyfgcfkynil3n99s0hny1aqp"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libpng" ,libpng)
|
||||
("perl" ,perl)))
|
||||
(propagated-inputs
|
||||
`(("perl-libwww" ,perl-libwww)))
|
||||
(home-page "https://www.nongnu.org/icoutils/")
|
||||
(synopsis "Extract and convert bitmaps from Windows icon and cursor files")
|
||||
(description "Icoutils are a set of program for extracting and converting
|
||||
bitmaps from Microsoft Windows icon and cursor files. These files usually
|
||||
have the extension @code{.ico} or @code{.cur}, but they can also be embedded
|
||||
in executables and libraries (@code{.dll}-files). (Such embedded files are
|
||||
referred to as resources.)
|
||||
|
||||
Conversion of these files to and from PNG images is done @command{icotool}.
|
||||
@command{extresso} automates these tasks with the help of special resource
|
||||
scripts. Resources such can be extracted from MS Windows executable and
|
||||
library files with @command{wrestool}.
|
||||
|
||||
This package can be used to create @code{favicon.ico} files for web sites.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue