Files
nixpkgs/pkgs/by-name/re/reprepro/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

54 lines
963 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
autoreconfHook,
versionCheckHook,
nix-update-script,
bzip2,
db,
gpgme,
libarchive,
xz,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "reprepro";
version = "5.4.7";
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "debian";
repo = "reprepro";
tag = "reprepro-${finalAttrs.version}";
hash = "sha256-bGfVWOmcXvaE+t9jiZFrnaUTKVPJqGqbPFyThhKK8gQ=";
};
buildInputs = [
bzip2
db
gpgme
libarchive
xz
zlib
];
nativeBuildInputs = [
autoreconfHook
versionCheckHook
];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://salsa.debian.org/debian/reprepro/";
description = "Debian package repository producer";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ baloo ];
platforms = lib.platforms.all;
mainProgram = "reprepro";
};
})