Unverified Commit 49736311 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

various: fix invalid meta attrs stemming from 'lib' scope creep (#442800)

parents 76ccb9ff 5b55d0e2
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ let
    gemdir = ./.;
  };
in
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
  pname = "maphosts";
  version = env.gems.maphosts.version;

@@ -26,16 +26,16 @@ stdenv.mkDerivation {

  passthru.updateScript = bundlerUpdateScript "maphosts";

  meta = with lib; {
  meta = {
    description = "Small command line application for keeping your project hostnames in sync with /etc/hosts";
    homepage = "https://github.com/mpscholten/maphosts";
    changelog = "https://github.com/mpscholten/maphosts/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [
    changelog = "https://github.com/mpscholten/maphosts/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      mpscholten
      nicknovitski
    ];
    platforms = platforms.all;
    platforms = lib.platforms.all;
    mainProgram = "maphosts";
  };
}
})
+5 −5
Original line number Diff line number Diff line
@@ -113,18 +113,18 @@ let
      mercurial-tests = makeTests { flags = "--with-hg=$MERCURIAL_BASE/bin/hg"; };
    };

    meta = with lib; {
    meta = {
      description = "Fast, lightweight SCM system for very large distributed projects";
      homepage = "https://www.mercurial-scm.org";
      downloadPage = "https://www.mercurial-scm.org/release/";
      changelog = "https://wiki.mercurial-scm.org/Release${versions.majorMinor version}";
      license = licenses.gpl2Plus;
      maintainers = with maintainers; [
      changelog = "https://wiki.mercurial-scm.org/Release${lib.versions.majorMinor version}";
      license = lib.licenses.gpl2Plus;
      maintainers = with lib.maintainers; [
        lukegb
        euxane
        techknowlogick
      ];
      platforms = platforms.unix;
      platforms = lib.platforms.unix;
      mainProgram = "hg";
    };
  };
+5 −5
Original line number Diff line number Diff line
@@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    homepage = "https://github.com/pgf-tikz/pgf";
    description = "Portable Graphic Format for TeX";
    branch = lib.versions.major version;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
    branch = lib.versions.major finalAttrs.version;
    license = lib.licenses.gpl2Plus;
    maintainers = [ ];
    platforms = lib.platforms.unix;
  };
})
+5 −5
Original line number Diff line number Diff line
@@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    homepage = "https://github.com/pgf-tikz/pgf";
    description = "Portable Graphic Format for TeX - version ${finalAttrs.version}";
    branch = lib.versions.major version;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
    branch = lib.versions.major finalAttrs.version;
    license = lib.licenses.gpl2Plus;
    maintainers = [ ];
    platforms = lib.platforms.unix;
  };
})
+5 −5
Original line number Diff line number Diff line
@@ -55,13 +55,13 @@ stdenv.mkDerivation (finalAttrs: {

  passthru.updateScript = gitUpdater { rev-prefix = "xfmpc-"; };

  meta = with lib; {
  meta = {
    description = "MPD client written in GTK";
    homepage = "https://docs.xfce.org/apps/xfmpc/start";
    changelog = "https://gitlab.xfce.org/apps/xfmpc/-/blob/xfmpc-${version}/NEWS";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ doronbehar ];
    teams = [ teams.xfce ];
    changelog = "https://gitlab.xfce.org/apps/xfmpc/-/blob/xfmpc-${finalAttrs.version}/NEWS";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ doronbehar ];
    teams = [ lib.teams.xfce ];
    mainProgram = "xfmpc";
  };
})
Loading