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

treewide: fix double quoted strings in one-liners
This commit is contained in:
Sandro
2021-01-24 16:17:14 +01:00
committed by GitHub
563 changed files with 1884 additions and 1911 deletions
@@ -8,8 +8,8 @@ let
name = "bossa-bin2c";
src = ./bin2c.c;
dontUnpack = true;
buildPhase = ''cc $src -o bin2c'';
installPhase = ''mkdir -p $out/bin; cp bin2c $out/bin/'';
buildPhase = "cc $src -o bin2c";
installPhase = "mkdir -p $out/bin; cp bin2c $out/bin/";
};
in
@@ -30,7 +30,7 @@ stdenv.mkDerivation {
meta = {
inherit (s) version;
description = ''Common Lisp launcher script'';
description = "Common Lisp launcher script";
license = lib.licenses.llgpl21 ;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.unix;
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
inherit version;
description = ''A package manager for Lua'';
description = "A package manager for Lua";
license = licenses.mit ;
maintainers = with maintainers; [raskin teto];
platforms = platforms.linux ++ platforms.darwin;
+4 -4
View File
@@ -11,13 +11,13 @@ stdenv.mkDerivation ({
buildInputs = [ ];
patchPhase = ''chmod +x configure'';
patchPhase = "chmod +x configure";
configurePhase = ''./configure -t lite'';
configurePhase = "./configure -t lite";
buildPhase = ''cd src; make; cd -'';
buildPhase = "cd src; make; cd -";
installPhase = ''cd src; make install; cd -; cp -vr $PWD $out'';
installPhase = "cd src; make install; cd -; cp -vr $PWD $out";
meta = {
description = "The Test Environment Toolkit is used in test applications like The Open Group's UNIX Certification program and the Free Standards Group's LSB Certification program";