about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/xorg-autoconf/default.nix
blob: 34aa363550ae555a6109185c48824409511cd8f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
  };
}