[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: Add perl-file-basedir.
From: |
Ludovic Courtès |
Subject: |
03/10: gnu: Add perl-file-basedir. |
Date: |
Tue, 28 Nov 2017 05:25:48 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit b32596ecfce029627cc76660aa86ff3debf96069
Author: Brendan Tildesley <address@hidden>
Date: Mon Nov 27 23:54:31 2017 +1100
gnu: Add perl-file-basedir.
* gnu/packages/freedesktop.scm: (perl-file-basedir): New variable.
Co-authored-by: Ludovic Courtès <address@hidden>
---
gnu/packages/freedesktop.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index c82fc62..bb93286 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -32,6 +32,7 @@
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system perl)
#:use-module (guix build-system python)
#:use-module (gnu packages acl)
#:use-module (gnu packages admin)
@@ -60,6 +61,8 @@
#:use-module (gnu packages m4)
#:use-module (gnu packages polkit)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages perl-check)
#:use-module (gnu packages python)
#:use-module (gnu packages w3m)
#:use-module (gnu packages xml)
@@ -1113,3 +1116,33 @@ localization (i.e. translation) of the file names.
Designed to be
automatically run when a user logs in, xdg-user-dirs can also be run
manually by a user.")
(license license:gpl2)))
+
+(define-public perl-file-basedir
+ (package
+ (name "perl-file-basedir")
+ (version "0.07")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/K/KI/KIMRYAN/"
+ "File-BaseDir-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0aq8d4hsaxqibp36f773y6dfck7zd82v85sp8vhi6pjkg3pmf2hj"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-module-build" ,perl-module-build)
+ ("perl-file-which" ,perl-file-which)
+ ("perl-test-pod" ,perl-test-pod)
+ ("perl-test-pod-coverage" ,perl-test-pod-coverage)
+ ("xdg-user-dirs" ,xdg-user-dirs)))
+ (propagated-inputs
+ `(("perl-ipc-system-simple" ,perl-ipc-system-simple)))
+ (home-page "http://search.cpan.org/dist/File-BaseDir/")
+ (synopsis "Use the Freedesktop.org base directory specification")
+ (description
+ "@code{File::Basedir} can be used to find directories and files as
+specified by the Freedesktop.org Base Directory Specification. This
+specifications gives a mechanism to locate directories for configuration,
+application data and cache data.")
+ (license license:perl-license)))
- branch master updated (ff6dcc1 -> 65c0f43), Ludovic Courtès, 2017/11/28
- 02/10: ui: Avoid "pkg:out" syntax when reporting collisions., Ludovic Courtès, 2017/11/28
- 04/10: gnu: Add perl-file-desktopentry., Ludovic Courtès, 2017/11/28
- 06/10: gnu: xdg-utils: Add perl-file-mimeinfo as an input., Ludovic Courtès, 2017/11/28
- 01/10: gnu: node: Update to 8.9.1., Ludovic Courtès, 2017/11/28
- 10/10: services: xorg: Remove WindowMaker as a default fallback., Ludovic Courtès, 2017/11/28
- 07/10: services: xorg: Allow users to specify a list of modules., Ludovic Courtès, 2017/11/28
- 08/10: services: slim: Remove unused 'bash' configuration field., Ludovic Courtès, 2017/11/28
- 09/10: services: xorg: Document 'slim-configuration' and deprecate 'slim-service'., Ludovic Courtès, 2017/11/28
- 03/10: gnu: Add perl-file-basedir.,
Ludovic Courtès <=
- 05/10: gnu: Add perl-file-mimeinfo., Ludovic Courtès, 2017/11/28