pkgs: add i3-get-window-criteria
This commit is contained in:
parent
a7839c63e0
commit
2d21945670
3 changed files with 75 additions and 0 deletions
43
pkgs/i3-get-window-criteria/default.nix
Normal file
43
pkgs/i3-get-window-criteria/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ coreutils, gnused, makeWrapper, lib, shellcheck, stdenvNoCC, xorg }:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "i3-get-window-criteria";
|
||||
version = "0.1.0";
|
||||
|
||||
src = ./i3-get-window-criteria;
|
||||
|
||||
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
shellcheck
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
shellcheck $src
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src $out/bin/${pname}
|
||||
chmod a+x $out/bin/${pname}
|
||||
'';
|
||||
|
||||
wrapperPath = lib.makeBinPath [
|
||||
coreutils
|
||||
gnused
|
||||
xorg.xprop
|
||||
xorg.xwininfo
|
||||
];
|
||||
|
||||
fixupPhase = ''
|
||||
patchShebangs $out/bin/${pname}
|
||||
wrapProgram $out/bin/${pname} --prefix PATH : "${wrapperPath}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Helper script to query i3 window criterions";
|
||||
homepage = "https://gitea.belanyi.fr/ambroisie/nix-config";
|
||||
license = with licenses; [ mit ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue