Unverified Commit cfce957d authored by Daniel Nagy's avatar Daniel Nagy Committed by GitHub
Browse files

treewide: more meta changelog urls and mainPrograms (#200062)

* turbovnc: add changelog url

* memray: add changelog url

* ddcutil: add changelog url

* jc: add changelog url

* zed: add changelog url

* lua: use https homepage

* sil: use https url

* the-powder-toy: use https homepage

* tldr: add changelog url

* openjpeg: add changelog url

* scheme48: use https homepage

* bubblewrap: set meta.mainProgram

* zbar: set meta.mainProgram

* qpdf: add changelog url

* nvtop: set meta.mainProgram

* squashfs: add meta.mainProgram
parent 16722903
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ stdenv.mkDerivation rec {
  };

  meta = {
    homepage = "http://www.lua.org";
    homepage = "https://www.lua.org";
    description = "Powerful, fast, lightweight, embeddable scripting language";
    longDescription = ''
      Lua combines simple procedural syntax with powerful data
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
  version = "1.9.2";

  src = fetchurl {
    url = "http://s48.org/${version}/scheme48-${version}.tgz";
    url = "https://s48.org/${version}/scheme48-${version}.tgz";
    sha256 = "1x4xfm3lyz2piqcw1h01vbs1iq89zq7wrsfjgh3fxnlm1slj2jcw";
  };

@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
  '';

  meta = with lib; {
    homepage = "http://s48.org/";
    homepage = "https://s48.org/";
    description = "Scheme 48 interpreter for R5RS";
    platforms = platforms.unix;
    license = licenses.bsd3;
+1 −0
Original line number Diff line number Diff line
@@ -75,5 +75,6 @@ stdenv.mkDerivation rec {
    license = licenses.bsd2;
    maintainers = with maintainers; [ codyopel ];
    platforms = platforms.all;
    changelog = "https://github.com/uclouvain/openjpeg/blob/v${version}/CHANGELOG.md";
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -25,10 +25,11 @@ stdenv.mkDerivation rec {
  doCheck = true;

  meta = with lib; {
    homepage = "http://qpdf.sourceforge.net/";
    homepage = "https://qpdf.sourceforge.io/";
    description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
    license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
    maintainers = with maintainers; [ abbradar ];
    platforms = platforms.all;
    changelog = "https://github.com/qpdf/qpdf/blob/v${version}/ChangeLog";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -34,5 +34,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/kellyjonbrazil/jc";
    license = licenses.mit;
    maintainers = with maintainers; [ atemu ];
    changelog = "https://github.com/kellyjonbrazil/jc/blob/v${version}/CHANGELOG";
  };
}
Loading