mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add libcanberra-gtk2.
* gnu/packages/libcanberra.scm (libcanberra/gtk+-2): New variable.
This commit is contained in:
parent
fe476868df
commit
6366cef38d
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -24,6 +25,7 @@ (define-module (gnu packages libcanberra)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build utils)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages gstreamer)
|
||||
#:use-module (gnu packages gtk)
|
||||
|
@ -96,6 +98,12 @@ (define-public libcanberra
|
|||
null) and is designed to be portable.")
|
||||
(license lgpl2.1+)))
|
||||
|
||||
(define-public libcanberra/gtk+-2
|
||||
(package (inherit libcanberra)
|
||||
(name "libcanberra-gtk2")
|
||||
(inputs `(,@(alist-delete "gtk+" (package-inputs libcanberra))
|
||||
("gtk+" ,gtk+-2)))))
|
||||
|
||||
(define-public sound-theme-freedesktop
|
||||
(package
|
||||
(name "sound-theme-freedesktop")
|
||||
|
|
Loading…
Reference in a new issue