xorg-autoconf: init at 1.19.3

main
Arnout Engelen 2 years ago
parent e0169d7a9d
commit 347f24aa43
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA
  1. 29
      pkgs/development/tools/misc/xorg-autoconf/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,29 @@
{ lib
, stdenv
, autoreconfHook
, fetchFromGitLab
}:
stdenv.mkDerivation rec {
pname = "xorg-autoconf";
version = "1.19.3";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
group = "xorg";
owner = "util";
repo = "macros";
rev = "util-macros-${version}";
sha256 = "sha256-+yEMCjLztdY5LKTNjfhudDS0fdaOj4LKZ3YL5witFR4=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "GNU autoconf macros shared across X.Org projects";
homepage = "https://gitlab.freedesktop.org/xorg/util/macros";
maintainers = with maintainers; [ raboof ];
license = licenses.mit;
platforms = platforms.unix;
};
}

@ -22756,6 +22756,8 @@ with pkgs;
or (if stdenv.isDarwin then "1.18" else null); # 1.19 needs fixing on Darwin
}) // { inherit xlibsWrapper; } );
xorg-autoconf = callPackage ../development/tools/misc/xorg-autoconf { };
xwayland = callPackage ../servers/x11/xorg/xwayland.nix { };
yaws = callPackage ../servers/http/yaws {

Loading…
Cancel
Save