Unverified Commit 48c44c67 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

kwm: drop (#473014)

parents 07772ded 5b8fe10a
Loading
Loading
Loading
Loading
+0 −26
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>Label</key>
  <string>org.nixos.kwm</string>
  <key>ProgramArguments</key>
  <array>
    <string>@out@/kwm</string>
  </array>
  <key>KeepAlive</key>
  <true/>
  <key>Sockets</key>
  <dict>
    <key>Listeners</key>
    <dict>
      <key>SockServiceName</key>
      <string>3020</string>
      <key>SockType</key>
      <string>dgram</string>
      <key>SockFamily</key>
      <string>IPv4</string>
  </dict>
</dict>
</dict>
</plist>

pkgs/by-name/kw/kwm/package.nix

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchzip,
}:

stdenv.mkDerivation rec {
  pname = "kwm";
  version = "4.0.5";

  src = fetchzip {
    stripRoot = false;
    url = "https://github.com/koekeishiya/kwm/releases/download/v${version}/Kwm-${version}.zip";
    sha256 = "1ld1vblg3hmc6lpb8p2ljvisbkijjkijf4y87z5y1ia4k8pk7mxb";
  };

  # TODO: Build this properly once we have swiftc.
  dontBuild = true;

  installPhase = ''
    mkdir -p $out/bin
    cp kwmc $out/bin/kwmc
    cp kwm overlaylib.dylib $out

    mkdir -p $out/Library/LaunchDaemons
    cp ${./org.nixos.kwm.plist} $out/Library/LaunchDaemons/org.nixos.kwm.plist
    substituteInPlace $out/Library/LaunchDaemons/org.nixos.kwm.plist --subst-var out
  '';

  meta = {
    description = "Tiling window manager with focus follows mouse for OSX";
    homepage = "https://github.com/koekeishiya/kwm";
    downloadPage = "https://github.com/koekeishiya/kwm/releases";
    platforms = lib.platforms.darwin;
    maintainers = with lib.maintainers; [ lnl7 ];
    mainProgram = "kwmc";
    license = lib.licenses.mit;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -814,6 +814,7 @@ mapAliases {
  kube3d = throw "'kube3d' has been renamed to/replaced by 'k3d'"; # Converted to throw 2025-10-27
  kubei = throw "'kubei' has been renamed to/replaced by 'kubeclarity'"; # Converted to throw 2025-10-27
  kubo-migrator-all-fs-repo-migrations = throw "'kubo-migrator-all-fs-repo-migrations' has been renamed to/replaced by 'kubo-fs-repo-migrations'"; # Converted to throw 2025-10-27
  kwm = throw "'kwm' has been removed since upstream is a 404"; # Added 2025-12-21
  languageMachines.frog = frog; # Added 2025-10-7
  languageMachines.frogdata = frogdata; # Added 2025-10-7
  languageMachines.libfolia = libfolia; # Added 2025-10-7