mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 05:14:45 +00:00
30 lines
681 B
Nix
30 lines
681 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|