hax11: init at unstable-2022-12-10

This commit is contained in:
Anderson Torres 2023-09-01 16:01:35 -03:00
parent cded842dbd
commit 5bd05aeea3
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ lib
, multiStdenv
, fetchFromGitHub
, libX11
, libXxf86vm
, xorgproto
, unstableGitUpdater
}:
multiStdenv.mkDerivation (finalAttrs: {
pname = "hax11";
version = "unstable-2022-12-10";
src = fetchFromGitHub {
owner = "CyberShadow";
repo = "hax11";
rev = "dce456f2b209f1be18d91064be257b66b69b7d9f";
hash = "sha256-e3jYvbglQ5Nzoz/B+WEkCw48Tu+i73t+PNq51mjzmjY=";
};
outputs = [ "out" "doc" ];
buildInputs = [
libX11
libXxf86vm
xorgproto
];
installPhase = ''
runHook preInstall
install -Dm644 lib32/hax11.so -t $out/lib32/
install -Dm644 lib64/hax11.so -t $out/lib64/
install -Dm644 README.md -t $doc/share/doc/hax11/
runHook postInstall
'';
passthru = {
updateScript = unstableGitUpdater { };
};
meta = {
homepage = "https://github.com/CyberShadow/hax11";
description = "Hackbrary to Hook and Augment X11 protocol calls";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.linux;
};
})

View file

@ -22122,6 +22122,8 @@ with pkgs;
hawknl = callPackage ../development/libraries/hawknl { };
hax11 = callPackage ../development/libraries/hax11 { };
haxor-news = callPackage ../applications/misc/haxor-news { };
hdt = callPackage ../misc/hdt { };