Files
nixpkgs/pkgs/by-name/ut/util-macros/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
testers,
gitUpdater,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "util-macros";
version = "1.20.2";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
group = "xorg";
owner = "util";
repo = "macros";
tag = "util-macros-${finalAttrs.version}";
hash = "sha256-COIWe7GMfbk76/QUIRsN5yvjd6MEarI0j0M+Xa0WoKQ=";
};
strictDeps = true;
nativeBuildInputs = [ autoreconfHook ];
passthru = {
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
updateScript = gitUpdater {
rev-prefix = "util-macros-";
ignoredVersions = "1_0_2";
};
};
meta = {
description = "GNU autoconf macros shared across X.Org projects";
homepage = "https://gitlab.freedesktop.org/xorg/util/macros";
license = with lib.licenses; [
hpndSellVariant
mit
];
maintainers = with lib.maintainers; [
raboof
jopejoe1
];
pkgConfigModules = [ "xorg-macros" ];
platforms = lib.platforms.unix;
};
})