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
50 lines
957 B
Nix
50 lines
957 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
xorg,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
util-macros,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xlogo";
|
|
version = "1.0.7";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
group = "xorg";
|
|
owner = "app";
|
|
repo = "xlogo";
|
|
rev = "refs/tags/xlogo-${version}";
|
|
hash = "sha256-KjJhuiFVn34vEZbC7ds4MrcXCHq9PcIpAuaCGBX/EXc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
util-macros
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
configureFlags = [ "--with-appdefaultdir=$out/share/X11/app-defaults" ];
|
|
|
|
buildInputs = [
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xorg.libSM
|
|
xorg.libXmu
|
|
xorg.libXaw
|
|
xorg.libXt
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "X Window System logo display demo";
|
|
homepage = "https://gitlab.freedesktop.org/xorg/app/xlogo";
|
|
maintainers = with maintainers; [ raboof ];
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
mainProgram = "xlogo";
|
|
};
|
|
}
|