treewide: fix double quoted strings in meta.description

Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
This commit is contained in:
volth
2021-01-24 19:56:59 +07:00
committed by Ben Siraphob
parent 513a3ea665
commit bc0d605cf1
563 changed files with 1884 additions and 1911 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ let
name = "apparmor-kernel-patches-${apparmor-version}";
src = apparmor-sources;
phases = ''unpackPhase installPhase'';
phases = "unpackPhase installPhase";
installPhase = ''
mkdir "$out"
+1 -1
View File
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
platforms = platforms.linux;
maintainers = with maintainers; [ raskin ];
description = ''Console system performance monitor'';
description = "Console system performance monitor";
longDescription = ''
Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
+3 -3
View File
@@ -49,12 +49,12 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
meta = {
inherit (s) version;
description = ''An udev fork by Gentoo'';
description = "An udev fork by Gentoo";
license = lib.licenses.gpl2Plus ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
homepage = ''https://www.gentoo.org/proj/en/eudev/'';
downloadPage = ''http://dev.gentoo.org/~blueness/eudev/'';
homepage = "https://www.gentoo.org/proj/en/eudev/";
downloadPage = "http://dev.gentoo.org/~blueness/eudev/";
updateWalker = true;
};
}
+1 -1
View File
@@ -80,7 +80,7 @@ stdenv.mkDerivation {
meta = {
inherit (s) version;
description = ''Namespace-based sandboxing tool for Linux'';
description = "Namespace-based sandboxing tool for Linux";
license = lib.licenses.gpl2Plus ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
+1 -1
View File
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
makeFlags = [ "prefix=$(out)" "manprefix=$(out)/share/" ];
meta = {
inherit (s) version;
description = ''Tool to detach from controlling TTY and attach to another'';
description = "Tool to detach from controlling TTY and attach to another";
license = lib.licenses.gpl2 ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
+2 -2
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "1i2m98yypfa9phshlmvjlgw7axfisxmldzrvnbzm5spvv5s4kvvb";
};
preBuild = ''cd driver-uinput'';
preBuild = "cd driver-uinput";
installPhase = ''
mkdir -p "$out/bin"
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
'';
meta = {
description = ''Uinput driver for Android GfxTablet tablet-as-input-device app'';
description = "Uinput driver for Android GfxTablet tablet-as-input-device app";
license = lib.licenses.mit ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
+1 -1
View File
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
mkdir -p "$out/etc/udev/rules.d"
'';
postInstall = ''rmdir $out/dev'';
postInstall = "rmdir $out/dev";
meta = with lib; {
description = "grsecurity RBAC administration and policy analysis utility";
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
'';
makeFlags = [
"prefix=${placeholder ''out''}"
"prefix=${placeholder "out"}"
];
hardeningDisable = lib.optional (stdenv.isi686) "stackprotector";
@@ -27,8 +27,7 @@ stdenv.mkDerivation rec {
" src/{startup.c,pcmcia-check-broken-cis.c} # fix-color */
''
+ (if firmware == [] then ''sed -i "s,STARTUP = true,STARTUP = false," Makefile'' else "")
+ (if configOpts == null then "" else ''
ln -sf ${configOpts} ./config/config.opts'')
+ (if configOpts == null then "" else "ln -sf ${configOpts} ./config/config.opts")
;
makeFlags = [ "LEX=flex" ];