nixpkgs/pkgs/by-name/x5/x509-limbo/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

50 lines
1012 B
Nix

{ lib
, fetchFromGitHub
, python3
, x509-limbo
}:
python3.pkgs.buildPythonPackage {
pname = "x509-limbo";
version = "unstable-2024-03-13";
pyproject = true;
src = fetchFromGitHub {
owner = "C2SP";
repo = "x509-limbo";
rev = "a04fb05cf132e1405f71c12616cf0aead829909a";
hash = "sha256-TA4ciHkXg/RKzcIs2bwpx7CxsQDyQMG636Rr74xPsBA=";
};
dependencies = with python3.pkgs; [
flit-core
requests
pydantic
jinja2
cryptography
pyopenssl
pyyaml
certvalidator
certifi
];
postInstall = ''
mkdir -p $out/share
cp limbo.json $out/share/
wrapProgram $out/bin/limbo \
--append-flags "--limbo $out/share/limbo.json"
'';
meta = with lib; {
homepage = "https://x509-limbo.com/";
description = "Suite of testvectors for X.509 certificate path validation and tools for building them ";
mainProgram = "limbo";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ baloo ];
};
}