depot/pkgs/tools/security/der-ascii/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
721 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "der-ascii";
version = "0.3.0";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "sha256-LgxGSZQNxwx08mK9G8mSuBFTOd3pC1mvz3Wz7Y+6XR4=";
};
vendorHash = null;
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
};
}