i3-wk-switch: init at 2017-08-21
This commit is contained in:
parent
f5f71c08cd
commit
24246f2d89
|
@ -3363,6 +3363,11 @@
|
||||||
github = "symphorien";
|
github = "symphorien";
|
||||||
name = "Guillaume Girol";
|
name = "Guillaume Girol";
|
||||||
};
|
};
|
||||||
|
synthetica = {
|
||||||
|
email = "nix@hilhorst.be";
|
||||||
|
github = "Synthetica9";
|
||||||
|
name = "Patrick Hilhorst";
|
||||||
|
};
|
||||||
szczyp = {
|
szczyp = {
|
||||||
email = "qb@szczyp.com";
|
email = "qb@szczyp.com";
|
||||||
github = "szczyp";
|
github = "szczyp";
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
{ stdenv, fetchFromGitHub, python2Packages }:
|
||||||
|
|
||||||
|
let
|
||||||
|
pkgName = "i3-wk-switch";
|
||||||
|
in
|
||||||
|
python2Packages.buildPythonApplication rec {
|
||||||
|
name = "${pkgName}-${version}";
|
||||||
|
version = "2017-08-21";
|
||||||
|
|
||||||
|
# https://github.com/tmfink/i3-wk-switch/commit/484f840bc4c28ddc60fa3be81e2098f7689e78fb
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tmfink";
|
||||||
|
repo = pkgName;
|
||||||
|
rev = "484f840";
|
||||||
|
sha256 = "0nrc13ld5bx07wrgnpzgpbaixb4rpi93xiapvyb8srd49fj9pcmb";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python2Packages; [ i3-py ];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
cp i3-wk-switch.py "$out/bin/i3-wk-switch"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "XMonad-like workspace switching for i3";
|
||||||
|
maintainers = with maintainers; [ synthetica ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
homepage = https://travisf.net/i3-wk-switcher;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15968,6 +15968,8 @@ with pkgs;
|
||||||
|
|
||||||
i3status-rust = callPackage ../applications/window-managers/i3/status-rust.nix { };
|
i3status-rust = callPackage ../applications/window-managers/i3/status-rust.nix { };
|
||||||
|
|
||||||
|
i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };
|
||||||
|
|
||||||
i810switch = callPackage ../os-specific/linux/i810switch { };
|
i810switch = callPackage ../os-specific/linux/i810switch { };
|
||||||
|
|
||||||
icewm = callPackage ../applications/window-managers/icewm {};
|
icewm = callPackage ../applications/window-managers/icewm {};
|
||||||
|
|
Loading…
Reference in New Issue