tkrev: tkcvs 8.2.1 -> tkrev 9.4.1

Package has been renamed.

+33 -29
-28
pkgs/applications/version-management/tkcvs/default.nix
··· 1 - { lib, stdenv, fetchurl, tcl, tk }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "tkcvs"; 5 - version = "8.2.1"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/tkcvs/tkcvs_${lib.replaceStrings ["."] ["_"] version}.tar.gz"; 9 - sha256 = "0kvj6rcx1153wq0n1lmd8imbrki6xy5wxghwzlb9i15l65sclg3i"; 10 - }; 11 - 12 - buildInputs = [ tcl tk ]; 13 - 14 - patchPhase = '' 15 - sed -e 's@exec wish@exec ${tk}/bin/wish@' -i tkcvs/tkcvs.tcl tkdiff/tkdiff 16 - ''; 17 - 18 - installPhase = '' 19 - ./doinstall.tcl $out 20 - ''; 21 - 22 - meta = { 23 - homepage = "https://tkcvs.sourceforge.io"; 24 - description = "TCL/TK GUI for cvs and subversion"; 25 - license = lib.licenses.gpl2Plus; 26 - platforms = lib.platforms.unix; 27 - }; 28 - }
+31
pkgs/applications/version-management/tkrev/default.nix
··· 1 + { lib, stdenv, fetchurl, tcl, tk }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "tkrev"; 5 + version = "9.4.1"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/tkcvs/tkrev_${version}.tar.gz"; 9 + sha256 = "sha256-WHDZPShEB9Q+Bjbb37mogJLUZk2GuWoO8bz+Zydc7i4="; 10 + }; 11 + 12 + buildInputs = [ tcl tk ]; 13 + 14 + patchPhase = '' 15 + for file in tkrev/tkrev.tcl tkdiff/tkdiff; do 16 + substituteInPlace "$file" \ 17 + --replace "exec wish" "exec ${tk}/bin/wish" 18 + done 19 + ''; 20 + 21 + installPhase = '' 22 + ./doinstall.tcl $out 23 + ''; 24 + 25 + meta = { 26 + homepage = "https://tkcvs.sourceforge.io"; 27 + description = "TCL/TK GUI for cvs and subversion"; 28 + license = lib.licenses.gpl2Plus; 29 + platforms = lib.platforms.unix; 30 + }; 31 + }
+1
pkgs/top-level/aliases.nix
··· 1193 1193 thunderbird-bin-68 = thunderbird-68; 1194 1194 timescale-prometheus = promscale; # Added 2020-09-29 1195 1195 timetable = throw "timetable has been removed, as the upstream project has been abandoned"; # Added 2021-09-05 1196 + tkcvs = tkrev; # Added 2022-03-07 1196 1197 togglesg-download = throw "togglesg-download was removed 2021-04-30 as it's unmaintained"; # Added 2021-04-30 1197 1198 tomboy = throw "tomboy is not actively developed anymore and was removed."; # Added 2022-01-27 1198 1199 tomcat7 = throw "tomcat7 has been removed from nixpkgs as it has reached end of life."; # Added 2021-06-16
+1 -1
pkgs/top-level/all-packages.nix
··· 29385 29385 29386 29386 tixati = callPackage ../applications/networking/p2p/tixati { }; 29387 29387 29388 - tkcvs = callPackage ../applications/version-management/tkcvs { }; 29388 + tkrev = callPackage ../applications/version-management/tkrev { }; 29389 29389 29390 29390 tla = callPackage ../applications/version-management/arch { }; 29391 29391