Merge pull request #234365 from r-ryantm/auto-update/vtm

vtm: 0.9.9i -> 0.9.9k

authored by

Weijia Wang and committed by
GitHub
461a1848 5c51b96f

+6 -4
+3 -3
pkgs/tools/misc/vtm/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "vtm"; 9 - version = "0.9.9i"; 10 11 src = fetchFromGitHub { 12 owner = "netxs-group"; 13 repo = "vtm"; 14 rev = "v${version}"; 15 - sha256 = "sha256-pkso0Bpb+0Zua3MIXXEbaJDl/oENa51157mXTJXJC/A="; 16 }; 17 18 nativeBuildInputs = [ cmake ]; ··· 23 description = "Terminal multiplexer with window manager and session sharing"; 24 homepage = "https://vtm.netxs.online/"; 25 license = licenses.mit; 26 - platforms = [ "x86_64-linux" ]; 27 maintainers = with maintainers; [ ahuzik ]; 28 }; 29 }
··· 6 7 stdenv.mkDerivation rec { 8 pname = "vtm"; 9 + version = "0.9.9k"; 10 11 src = fetchFromGitHub { 12 owner = "netxs-group"; 13 repo = "vtm"; 14 rev = "v${version}"; 15 + sha256 = "sha256-vmgjonMjhVEfsujWUuX+50NPAzgIfJADp8qjnDmfV1E="; 16 }; 17 18 nativeBuildInputs = [ cmake ]; ··· 23 description = "Terminal multiplexer with window manager and session sharing"; 24 homepage = "https://vtm.netxs.online/"; 25 license = licenses.mit; 26 + platforms = platforms.all; 27 maintainers = with maintainers; [ ahuzik ]; 28 }; 29 }
+3 -1
pkgs/top-level/all-packages.nix
··· 13561 SDL = SDL_sixel; 13562 }; 13563 13564 - vtm = callPackage ../tools/misc/vtm { }; 13565 13566 witness = callPackage ../tools/security/witness { }; 13567
··· 13561 SDL = SDL_sixel; 13562 }; 13563 13564 + vtm = callPackage ../tools/misc/vtm { 13565 + stdenv = if stdenv.isDarwin then clang16Stdenv else stdenv; 13566 + }; 13567 13568 witness = callPackage ../tools/security/witness { }; 13569