commit dfd60b41d3f1d768cdd3d6b14ee49b41fd48f48c parent 950da471d2953b3c036a317094da01a1ab06426b Author: Nikolay Korotkiy <sikmir@disroot.org> Date: Sun, 6 Sep 2026 01:17:30 +0400 Drop amethyst Diffstat:
| D | pkgs/by-name/am/amethyst/package.nix | | | 42 | ------------------------------------------ |
1 file changed, 0 insertions(+), 42 deletions(-)
diff --git a/pkgs/by-name/am/amethyst/package.nix b/pkgs/by-name/am/amethyst/package.nix @@ -1,42 +0,0 @@ -{ - lib, - stdenv, - fetchfromgh, - unzip, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "Amethyst"; - version = "0.21.2"; - - __structuredAttrs = true; - - src = fetchfromgh { - owner = "ianyh"; - repo = "Amethyst"; - tag = "v${finalAttrs.version}"; - hash = "sha256-pqUzcNUP8v3ls68BIzWXggXgUVe1wc/bN5BtXqKHXM4="; - name = "Amethyst.zip"; - }; - - sourceRoot = "."; - - nativeBuildInputs = [ unzip ]; - - installPhase = '' - mkdir -p $out/Applications - cp -r *.app $out/Applications - ''; - - preferLocalBuild = true; - - meta = { - description = "Automatic tiling window manager for macOS à la xmonad"; - homepage = "https://ianyh.com/amethyst/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sikmir ]; - platforms = [ "x86_64-darwin" ]; - skip.ci = true; - }; -})
