Commit 3d394472 authored by Francesco Gazzetta's avatar Francesco Gazzetta
Browse files

tclPackages: mark packages that are broken on Tcl9

parent 7f0b064d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -81,5 +81,6 @@ tcl.mkTclDerivation rec {
    platforms = lib.platforms.unix;
    mainProgram = "expect";
    maintainers = with lib.maintainers; [ SuperSandro2000 ];
    broken = tcl.isTcl9;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -46,5 +46,6 @@ mkTclDerivation rec {
    license = lib.licenses.tcltk;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ thoughtpolice ];
    broken = tcl.isTcl9;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  mkTclDerivation,
  fetchzip,
  autoreconfHook,
  tcl,
}:

mkTclDerivation {
@@ -24,5 +25,6 @@ mkTclDerivation {
    license = lib.licenses.tcltk;
    maintainers = with lib.maintainers; [ fgaz ];
    platforms = lib.platforms.all;
    broken = tcl.isTcl9;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  fetchFromGitHub,
  mkTclDerivation,
  tclx,
  tcl,
}:

mkTclDerivation {
@@ -31,5 +32,6 @@ mkTclDerivation {
    license = lib.licenses.bsd2;
    platforms = tclx.meta.platforms;
    maintainers = with lib.maintainers; [ nat-418 ];
    broken = tcl.isTcl9;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  mkTclDerivation,
  fetchFromGitHub,
  curl,
  tcl,
}:

mkTclDerivation rec {
@@ -29,5 +30,6 @@ mkTclDerivation rec {
    changelog = "https://github.com/flightaware/tclcurl-fa/blob/master/ChangeLog.txt";
    license = lib.licenses.tcltk;
    maintainers = with lib.maintainers; [ fgaz ];
    broken = tcl.isTcl9;
  };
}
Loading