about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-16 11:27:58 +0100
committerGitHub <noreply@github.com>2021-01-16 11:27:58 +0100
commita9bb54359eeedf2594fdf191de5b673fd1dd102d (patch)
tree3dc0c0a7ceae5546dd7f93b430d3b2d8bd5819fc /pkgs/applications/audio
parent249db9f8a74ed32f93b25ba5dd17503e4ca96fb2 (diff)
parent8dd78bb4fbb51227c3bf3547add972c175e83ba9 (diff)
downloadnixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar.gz
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar.bz2
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar.lz
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar.xz
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.tar.zst
nixlib-a9bb54359eeedf2594fdf191de5b673fd1dd102d.zip
Merge pull request #108099 from siraben/double-quotes-fix
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/AMB-plugins/default.nix2
-rw-r--r--pkgs/applications/audio/FIL-plugins/default.nix2
-rw-r--r--pkgs/applications/audio/mi2ly/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/AMB-plugins/default.nix b/pkgs/applications/audio/AMB-plugins/default.nix
index 2e2af8f3a9a2..eac2b4c783b4 100644
--- a/pkgs/applications/audio/AMB-plugins/default.nix
+++ b/pkgs/applications/audio/AMB-plugins/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   preInstall="mkdir -p $out/lib/ladspa";
 
   meta = {
-    description = ''A set of ambisonics ladspa plugins'';
+    description = "A set of ambisonics ladspa plugins";
     longDescription = ''
       Mono and stereo to B-format panning, horizontal rotator, square, hexagon and cube decoders.
     '';
diff --git a/pkgs/applications/audio/FIL-plugins/default.nix b/pkgs/applications/audio/FIL-plugins/default.nix
index 253e724cd313..89bda1387d93 100644
--- a/pkgs/applications/audio/FIL-plugins/default.nix
+++ b/pkgs/applications/audio/FIL-plugins/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   preInstall="mkdir -p $out/lib/ladspa";
 
   meta = {
-    description = ''a four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed'';
+    description = "a four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed";
     longDescription = ''
       Each section has an active/bypass switch, frequency, bandwidth and gain controls.
       There is also a global bypass switch and gain control.
diff --git a/pkgs/applications/audio/mi2ly/default.nix b/pkgs/applications/audio/mi2ly/default.nix
index 58c1690a9bb0..bc74a73b6432 100644
--- a/pkgs/applications/audio/mi2ly/default.nix
+++ b/pkgs/applications/audio/mi2ly/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
 
   meta = {
     inherit (s) version;
-    description = ''MIDI to Lilypond converter'';
+    description = "MIDI to Lilypond converter";
     license = stdenv.lib.licenses.gpl2Plus ;
     maintainers = [stdenv.lib.maintainers.raskin];
     platforms = stdenv.lib.platforms.linux;