treewide: fix double quoted strings in meta.description
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
This commit is contained in:
@@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
|
||||
buildFlags = [ "all" ];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder ''out''}"
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
# Install udev rules, but remove lines that set up the udev-acl
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page";
|
||||
baseName = "cfdg";
|
||||
sourceRegexp = ''.*[.]tgz'';
|
||||
sourceRegexp = ".*[.]tgz";
|
||||
versionExtractorSedScript = ''s/[^0-9]*([0-9.]*)[.]tgz/\1/'';
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [mono];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''Bitmap generation from a single example with convolutions and MCMC'';
|
||||
description = "Bitmap generation from a single example with convolutions and MCMC";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -51,7 +51,7 @@ assert lib.assertMsg (builtins.hasAttr variant variants) "gmic-qt variant “${v
|
||||
assert lib.assertMsg (builtins.all (d: d != null) variants.${variant}.extraDeps or []) "gmic-qt variant “${variant}” is missing one of its dependencies.";
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "gmic-qt${lib.optionalString (variant != "standalone") ''-${variant}''}";
|
||||
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
|
||||
version = "2.7.1";
|
||||
|
||||
gmic-community = fetchFromGitHub {
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = ''A small QR-code tool'';
|
||||
description = "A small QR-code tool";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = with platforms; linux;
|
||||
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
meta = {
|
||||
inherit (s) version;
|
||||
description = ''A small QR code decoding library'';
|
||||
description = "A small QR code decoding library";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [mono];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''Texture synthesis from examples'';
|
||||
description = "Texture synthesis from examples";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [mono];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''A generator of bitmaps that are locally similar to the input bitmap'';
|
||||
description = "A generator of bitmaps that are locally similar to the input bitmap";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''1D and 2D code reading library'';
|
||||
description = "1D and 2D code reading library";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
Reference in New Issue
Block a user