pkgs: add i3-get-window-criteria

This commit is contained in:
Bruno BELANYI 2021-05-08 17:40:22 +02:00
parent a7839c63e0
commit 2d21945670
3 changed files with 75 additions and 0 deletions

View 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;
};
}