sscep: init at 0.10.0

+40
+40
pkgs/by-name/ss/sscep/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + openssl, 7 + autoreconfHook, 8 + pkg-config, 9 + }: 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "sscep"; 12 + version = "0.10.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "certnanny"; 16 + repo = "sscep"; 17 + rev = "v${finalAttrs.version}"; 18 + hash = "sha256-wlxQONOCLPuNdI6AyMJoLP09cs+ak7Jv9idhXTT5RWA="; 19 + }; 20 + 21 + buildInputs = [ openssl ]; 22 + 23 + nativeBuildInputs = [ 24 + autoreconfHook 25 + pkg-config 26 + ]; 27 + 28 + passthru.updateScript = nix-update-script { }; 29 + 30 + meta = { 31 + description = "Client-only implementation of the SCEP (Cisco System's Simple Certificate Enrollment Protocol)"; 32 + homepage = "https://github.com/certnanny/sscep"; 33 + maintainers = [ lib.maintainers.stv0g ]; 34 + license = [ 35 + lib.licenses.bsd2 36 + lib.licenses.openssl 37 + ]; 38 + platforms = lib.platforms.all; 39 + }; 40 + })