forked from mirrors/nixpkgs
chunkwm: remove
This commit is contained in:
parent
5e04dac5d6
commit
8641b298b1
|
@ -1,36 +0,0 @@
|
|||
{ lib, stdenv, fetchzip, Carbon, Cocoa, ScriptingBridge }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "chunkwm";
|
||||
version = "0.4.9";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/koekeishiya/chunkwm/archive/v${version}.tar.gz";
|
||||
sha256 = "0w8q92q97fdvbwc3qb5w44jn4vi3m65ssdvjp5hh6b7llr17vspl";
|
||||
};
|
||||
|
||||
buildInputs = [ Carbon Cocoa ScriptingBridge ];
|
||||
outputs = [ "bin" "out" ];
|
||||
|
||||
buildPhase = ''
|
||||
for d in . src/chunkc src/plugins/*; do
|
||||
pushd $d
|
||||
buildPhase
|
||||
popd
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $bin/bin $out/bin $out/lib/chunkwm/plugins
|
||||
cp src/chunkc/bin/chunkc $bin/bin/chunkc
|
||||
cp bin/chunkwm $out/bin
|
||||
cp plugins/*.so $out/lib/chunkwm/plugins
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tiling window manager for macOS based on plugin architecture";
|
||||
homepage = "https://github.com/koekeishiya/chunkwm";
|
||||
platforms = platforms.darwin;
|
||||
maintainers = with maintainers; [ lnl7 ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -121,6 +121,7 @@ mapAliases ({
|
|||
cgmanager = throw "cgmanager was deprecated by lxc and therefore removed from nixpkgs."; # added 2020-06-05
|
||||
checkbashism = checkbashisms; # added 2016-08-16
|
||||
chronos = throw "chronos has been removed from nixpkgs, as it was unmaintained"; # added 2020-08-15
|
||||
chunkwm = throw "chunkwm has been removed: abandoned by upstream"; # added 2022-01-07
|
||||
cide = throw "cide was deprecated on 2019-09-11: abandoned by upstream";
|
||||
cinepaint = throw "cinepaint has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10
|
||||
cifs_utils = cifs-utils; # added 2016-08
|
||||
|
|
|
@ -1951,10 +1951,6 @@ with pkgs;
|
|||
|
||||
kwakd = callPackage ../servers/kwakd { };
|
||||
|
||||
chunkwm = callPackage ../os-specific/darwin/chunkwm {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa ScriptingBridge;
|
||||
};
|
||||
|
||||
kwm = callPackage ../os-specific/darwin/kwm { };
|
||||
|
||||
khd = callPackage ../os-specific/darwin/khd {
|
||||
|
|
Loading…
Reference in a new issue