Merge pull request #108099 from siraben/double-quotes-fix

This commit is contained in:
Sandro
2021-01-16 11:27:58 +01:00
committed by GitHub
43 changed files with 43 additions and 43 deletions

View File

@@ -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.
'';

View File

@@ -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.

View File

@@ -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;

View File

@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
description = ''Constructive solid geometry package'';
description = "Constructive solid geometry package";
broken = true; # 2018-04-11
};
}

View File

@@ -22,7 +22,7 @@ stdenv.mkDerivation {
makeFlags = [ "PREFIX=$(out)" ];
meta = {
inherit (s) version;
description = ''A console dmenu-like tool'';
description = "A console dmenu-like tool";
license = lib.licenses.mit;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;

View File

@@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
'';
meta = with lib; {
description = ''A vi-like file manager${if isFullPackage then "; Includes support for optional features" else ""}'';
description = "A vi-like file manager${if isFullPackage then "; Includes support for optional features" else ""}";
maintainers = with maintainers; [ raskin ];
platforms = if mediaSupport then platforms.linux else platforms.unix;
license = licenses.gpl2;