Files
nixpkgs/pkgs/by-name/ha/hackedbox/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

65 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
freetype,
fribidi,
imlib2,
libX11,
libXext,
libXft,
libXinerama,
libXpm,
libXrandr,
libXrender,
pkg-config,
xorgproto,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hackedbox";
version = "0.8.5.1";
src = fetchFromGitHub {
owner = "museoa";
repo = "hackedbox";
rev = finalAttrs.version;
hash = "sha256-hxfbEj7UxQ19xhetmdi0iyK6ceLUfUvAAyyTbNivlLQ=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
CXXFLAGS = "-std=c++98";
buildInputs = [
freetype
fribidi
imlib2
libX11
libXext
libXft
libXinerama
libXpm
libXrandr
libXrender
xorgproto
];
configureFlags = [
"--x-includes=${libX11.dev}/include"
"--x-libraries=${libX11.out}/lib"
];
meta = with lib; {
description = "Bastard hacked offspring of Blackbox";
homepage = "https://github.com/museoa/hackedbox/";
license = licenses.gpl2Plus;
maintainers = [ ];
inherit (libX11.meta) platforms;
};
})