summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-09-06 13:34:45 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commite1e059bd8f4f43172506d1ee0e1bca80357f5ea4 (patch)
tree186e79369ad4abb29f3fa2e4a5264385766d644b
parentb89b2bb5f80411ac2da8b6ad26f7f1d30754b0c2 (diff)
siguix: Add soundconverter-mod.
siguix/packages/soundconverter-mod.scm: New file.
-rw-r--r--siguix/packages/soundconverter-mod.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/siguix/packages/soundconverter-mod.scm b/siguix/packages/soundconverter-mod.scm
new file mode 100644
index 0000000..b2a01c8
--- /dev/null
+++ b/siguix/packages/soundconverter-mod.scm
@@ -0,0 +1,34 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (siguix packages soundconverter-mod)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system python)
+ #:use-module (guix packages)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gstreamer))
+
+(define-public soundconverter-mod
+ (package/inherit soundconverter
+ (name "soundconverter-mod")
+ (inputs (modify-inputs (package-inputs soundconverter)
+ (append gst-plugins-bad gst-plugins-good
+ gst-plugins-ugly gst-libav)))))