xlogo: init at 1.0.5
Show a window with the X11 logo. Not a very useful application in itself, but helpful to test X11-related things.
This commit is contained in:
parent
347f24aa43
commit
c07011d3c0
36
pkgs/tools/X11/xlogo/default.nix
Normal file
36
pkgs/tools/X11/xlogo/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitLab
|
||||||
|
, xorg
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, xorg-autoconf
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "xlogo";
|
||||||
|
version = "1.0.5";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.freedesktop.org";
|
||||||
|
group = "xorg";
|
||||||
|
owner = "app";
|
||||||
|
repo = "xlogo";
|
||||||
|
rev = "refs/tags/xlogo-${version}";
|
||||||
|
hash = "sha256-AyNFzRZtbCKkGacBCaGZZkLRTAGq5TrA2OXGqwoKq24=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ xorg-autoconf 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;
|
||||||
|
};
|
||||||
|
}
|
@ -4345,6 +4345,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xlogo = callPackage ../tools/X11/xlogo { };
|
||||||
|
|
||||||
xmlbeans = callPackage ../tools/misc/xmlbeans { };
|
xmlbeans = callPackage ../tools/misc/xmlbeans { };
|
||||||
|
|
||||||
xmlsort = perlPackages.XMLFilterSort;
|
xmlsort = perlPackages.XMLFilterSort;
|
||||||
|
Loading…
Reference in New Issue
Block a user