tclx: 8.4.1 -> 8.6.1

Move to flightaware fork, seems to be what everyone is using
This commit is contained in:
Francesco Gazzetta 2023-05-04 23:05:14 +02:00
parent 96c1b380e2
commit 578d5e941d

View file

@ -1,12 +1,17 @@
{ lib, fetchurl, tcl }: { lib
, fetchFromGitHub
, tcl
}:
tcl.mkTclDerivation rec { tcl.mkTclDerivation rec {
pname = "tclx"; pname = "tclx";
version = "8.4.1"; version = "8.6.1";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/tclx/tclx${version}.tar.bz2"; owner = "flightaware";
sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59"; repo = "tclx";
rev = "v${version}";
hash = "sha256-HdbuU0IR8q/0g2fIs1xtug4oox/D24C8E2VbEJC5B1A=";
}; };
# required in order for tclx to properly detect tclx.tcl at runtime # required in order for tclx to properly detect tclx.tcl at runtime
@ -17,7 +22,7 @@ tcl.mkTclDerivation rec {
''; '';
meta = { meta = {
homepage = "https://tclx.sourceforge.net/"; homepage = "https://github.com/flightaware/tclx";
description = "Tcl extensions"; description = "Tcl extensions";
license = lib.licenses.tcltk; license = lib.licenses.tcltk;
maintainers = with lib.maintainers; [ kovirobi fgaz ]; maintainers = with lib.maintainers; [ kovirobi fgaz ];