2022-06-22 13:50:47 +02:00
|
|
|
{ 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
|
|
|
|
];
|
|
|
|
|
2021-08-31 20:08:22 +02:00
|
|
|
dontUnpack = true;
|
|
|
|
|
2022-06-22 13:50:47 +02:00
|
|
|
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";
|
2023-03-16 21:37:52 +01:00
|
|
|
homepage = "https://git.belanyi.fr/ambroisie/nix-config";
|
2021-05-08 17:40:22 +02:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
platforms = platforms.unix;
|
2021-05-13 10:27:19 +02:00
|
|
|
maintainers = with maintainers; [ ambroisie ];
|
2021-05-08 17:40:22 +02:00
|
|
|
};
|
|
|
|
}
|