Unverified Commit c198aabe authored by usertam's avatar usertam
Browse files

debsigs: init at 0.2.2

parent bbb51e93
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}