nix-config/pkgs/i3-get-window-criteria/default.nix

43 lines
928 B
Nix
Raw Normal View History

{ lib, coreutils, gnused, makeWrapper, stdenvNoCC, xorg }:
2021-05-08 17:40:22 +02:00
stdenvNoCC.mkDerivation rec {
pname = "i3-get-window-criteria";
version = "0.1.0";
src = ./i3-get-window-criteria;
2023-04-22 13:36:28 +02:00
nativeBuildInputs = [
2021-05-08 17:40:22 +02:00
makeWrapper
];
dontUnpack = true;
dontBuild = true;
2021-05-08 17:40:22 +02:00
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://git.belanyi.fr/ambroisie/nix-config";
2021-05-08 17:40:22 +02:00
license = with licenses; [ mit ];
mainProgram = "i3-get-window-criteria";
maintainers = with maintainers; [ ambroisie ];
platforms = platforms.unix;
2021-05-08 17:40:22 +02:00
};
}