reprepro: init at 5.4.7

Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
This commit is contained in:
Arthur Gautier 2025-08-13 19:24:48 -07:00 committed by Arthur Gautier
parent 7e533f8ccf
commit e102e8f63b

View File

@ -0,0 +1,53 @@
{
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";
};
})