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:
commit
dfcc388ca9
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/de/debsigs/package.nix
Normal file
28
pkgs/by-name/de/debsigs/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue