44 lines
916 B
Nix
44 lines
916 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|