Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib
2, stdenv
3, autoreconfHook
4, fetchFromGitLab
5}:
6
7stdenv.mkDerivation rec {
8 pname = "xorg-autoconf";
9 version = "1.19.3";
10
11 src = fetchFromGitLab {
12 domain = "gitlab.freedesktop.org";
13 group = "xorg";
14 owner = "util";
15 repo = "macros";
16 rev = "util-macros-${version}";
17 sha256 = "sha256-+yEMCjLztdY5LKTNjfhudDS0fdaOj4LKZ3YL5witFR4=";
18 };
19
20 nativeBuildInputs = [ autoreconfHook ];
21
22 meta = with lib; {
23 description = "GNU autoconf macros shared across X.Org projects";
24 homepage = "https://gitlab.freedesktop.org/xorg/util/macros";
25 maintainers = with maintainers; [ raboof ];
26 license = licenses.mit;
27 platforms = platforms.unix;
28 };
29}