nixpkgs/pkgs/tools/security/der-ascii/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
721 B
Nix
Raw Normal View History

2023-09-13 01:12:26 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "der-ascii";
2023-10-30 01:23:53 +01:00
version = "0.3.0";
2023-09-13 01:12:26 +02:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
2023-10-30 01:23:53 +01:00
sha256 = "sha256-LgxGSZQNxwx08mK9G8mSuBFTOd3pC1mvz3Wz7Y+6XR4=";
2023-09-13 01:12:26 +02:00
};
vendorHash = null;
2023-09-13 01:12:26 +02:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = ''
A small human-editable language to emit DER or BER encodings of ASN.1
structures and malformed variants of them
'';
homepage = "https://github.com/google/der-ascii";
license = licenses.asl20;
maintainers = with maintainers; [ alexshpilkin cpu hawkw ];
mainProgram = "ascii2der"; # has stable output, unlike its inverse
};
}