xdotool: 3.20211022.1 -> 4.20260303.1 and adopt package (#530193)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-12 00:57:50 +00:00
committed by GitHub
+7 -3
View File
@@ -15,13 +15,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "xdotool";
version = "3.20211022.1";
version = "4.20260303.1";
src = fetchFromGitHub {
owner = "jordansissel";
repo = "xdotool";
rev = "v${finalAttrs.version}";
sha256 = "sha256-XFiaiHHtUSNFw+xhUR29+2RUHOa+Eyj1HHfjCUjwd9k=";
hash = "sha256-cgCZuvcxD1qQPpzSmYQZJj9TH8Vq9xTZLU8Rg7sUrvI=";
};
nativeBuildInputs = [
@@ -38,6 +38,8 @@ stdenv.mkDerivation (finalAttrs: {
libxext
];
strictDeps = true;
preBuild = ''
mkdir -p $out/lib
'';
@@ -48,7 +50,9 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://www.semicomplete.com/projects/xdotool/";
description = "Fake keyboard/mouse input, window management, and more";
license = lib.licenses.bsd3;
maintainers = [ ];
maintainers = with lib.maintainers; [
nick-linux
];
platforms = with lib.platforms; linux;
mainProgram = "xdotool";
};