0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

debsigs: init at 0.2.2 (#407328)

This commit is contained in:
Aleksana 2025-05-16 11:56:22 +08:00 committed by GitHub
commit dfcc388ca9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,28 @@
{
lib,
perlPackages,
fetchFromGitLab,
}:
perlPackages.buildPerlPackage rec {
pname = "debsigs";
version = "0.2.2";
src = fetchFromGitLab {
owner = "debsigs";
repo = "debsigs";
tag = "release/${version}";
hash = "sha256-gCc5JmmdhTAUQqkMOK/0YmlCRD0JcpemCpqusYmpoKU=";
};
sourceRoot = "${src.name}/perl";
meta = {
description = "Manipulate the cryptographic signatures stored inside a .deb file";
mainProgram = "debsigs";
homepage = "https://gitlab.com/debsigs/debsigs";
changelog = "https://gitlab.com/debsigs/debsigs/-/tags/release/${version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ usertam ];
};
}