gnu: Move libconfuse to (gnu packages textutils).
* gnu/packages/wm.scm (libconfuse): Move… * gnu/packages/textutils.scm (libconfuse): …to here. Adjust all imports.
This commit is contained in:
parent
2fe29c8490
commit
205df73940
|
@ -35,8 +35,8 @@
|
|||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages mtools)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (gnu packages wm))
|
||||
#:use-module (gnu packages textutils)
|
||||
#:use-module (gnu packages virtualization))
|
||||
|
||||
(define-public genimage
|
||||
(package
|
||||
|
|
|
@ -99,7 +99,6 @@
|
|||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages valgrind)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages wxwidgets)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (ice-9 match))
|
||||
|
|
|
@ -70,7 +70,6 @@
|
|||
#:use-module (gnu packages serialization)
|
||||
#:use-module (gnu packages ssh)
|
||||
#:use-module (gnu packages textutils)
|
||||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg)
|
||||
|
|
|
@ -188,6 +188,28 @@ normalization, case-folding, and other operations for data in the UTF-8
|
|||
encoding, supporting Unicode version 9.0.0.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public libconfuse
|
||||
(package
|
||||
(name "libconfuse")
|
||||
(version "3.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/martinh/libconfuse/"
|
||||
"releases/download/v" version
|
||||
"/confuse-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "02r1mmzik2m0iigbc2da3y754vj24i18r3ml5p2wzs027mjhn959"))))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://github.com/martinh/libconfuse")
|
||||
(synopsis "Configuration file parser library")
|
||||
(description "libconfuse is a configuration file parser library. It
|
||||
supports sections and (lists of) values (strings, integers, floats, booleans
|
||||
or other sections), as well as some other features (such as
|
||||
single/double-quoted strings, environment variable expansion, functions and
|
||||
nested include statements).")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public libgtextutils
|
||||
(package
|
||||
(name "libgtextutils")
|
||||
|
|
|
@ -83,31 +83,10 @@
|
|||
#:use-module (gnu packages video)
|
||||
#:use-module (gnu packages version-control)
|
||||
#:use-module (gnu packages man)
|
||||
#:use-module (gnu packages textutils)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download))
|
||||
|
||||
(define-public libconfuse
|
||||
(package
|
||||
(name "libconfuse")
|
||||
(version "3.2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/martinh/libconfuse/"
|
||||
"releases/download/v" version
|
||||
"/confuse-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02r1mmzik2m0iigbc2da3y754vj24i18r3ml5p2wzs027mjhn959"))))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://github.com/martinh/libconfuse")
|
||||
(synopsis "Configuration file parser library")
|
||||
(description "libconfuse is a configuration file parser library. It
|
||||
supports sections and (lists of) values (strings, integers, floats, booleans
|
||||
or other sections), as well as some other features (such as
|
||||
single/double-quoted strings, environment variable expansion, functions and
|
||||
nested include statements).")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public bspwm
|
||||
(package
|
||||
(name "bspwm")
|
||||
|
|
Loading…
Reference in New Issue