evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / xo / xorg-autoconf / package.nix
blob34aa363550ae555a6109185c48824409511cd8f6
1 { lib
2 , stdenv
3 , autoreconfHook
4 , fetchFromGitLab
5 }:
7 stdenv.mkDerivation rec {
8   pname = "xorg-autoconf";
9   version = "1.19.3";
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   };
20   nativeBuildInputs = [ autoreconfHook ];
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   };