···4444# Those pieces of software we entirely ignore upstream's handling of, and just
4545# make sure they're in the path if desired.
4646let
4747- k3sVersion = "1.20.5+k3s1"; # k3s git tag
4747+ k3sVersion = "1.20.6+k3s1"; # k3s git tag
4848 traefikChartVersion = "1.81.0"; # taken from ./scripts/download at the above k3s tag
4949 k3sRootVersion = "0.8.1"; # taken from ./scripts/download at the above k3s tag
5050 k3sCNIVersion = "0.8.6-k3s1"; # taken from ./scripts/version.sh at the above k3s tag
···9696 url = "https://github.com/k3s-io/k3s";
9797 rev = "v${k3sVersion}";
9898 leaveDotGit = true; # ./scripts/version.sh depends on git
9999- sha256 = "sha256-7RAZkSTh15BEZ3p6u2xE9vd5fpy4KBYrl2TjtpIiStM=";
9999+ sha256 = "sha256-IIZotJKQ/+WNmfcEJU5wFtZBufWjUp4MeVCRk4tSjyQ=";
100100 };
101101 # Stage 1 of the k3s build:
102102 # Let's talk about how k3s is structured.
···11-{ stdenv, fetchgit, lib
11+{ stdenvNoCC, fetchgit, lib
22, yad, mkvtoolnix-cli, libnotify }:
3344-stdenv.mkDerivation {
44+stdenvNoCC.mkDerivation {
55 pname = "mpv-convert-script";
66 version = "2016-03-18";
77 src = fetchgit {
···3030 '';
3131 passthru.scriptName = "convert_script.lua";
32323333- meta = {
3333+ meta = with lib; {
3434 description = "Convert parts of a video while you are watching it in mpv";
3535 homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
3636- maintainers = [ lib.maintainers.Profpatsch ];
3636+ maintainers = [ maintainers.Profpatsch ];
3737 longDescription = ''
3838 When this script is loaded into mpv, you can hit Alt+W to mark the beginning
3939 and Alt+W again to mark the end of the clip. Then a settings window opens.
4040 '';
4141+ license = licenses.unfree;
4242+ # script crashes mpv. See https://github.com/NixOS/nixpkgs/issues/113202
4343+ broken = true;
4144 };
4245}
4346