about summary refs log tree commit diff
path: root/pkgs/tools/security/der-ascii
diff options
context:
space:
mode:
authorAlexander Shpilkin <ashpilkin@gmail.com>2023-09-13 02:12:26 +0300
committerAlexander Shpilkin <ashpilkin@gmail.com>2023-09-13 02:12:26 +0300
commitd5f2be64d01ce301eb37c8a470d8b83a40bb7ffb (patch)
tree1186dd9149bd60553cbe1dd28a9760a2f72a7fd2 /pkgs/tools/security/der-ascii
parenta999c1cc0c9eb2095729d5aa03e0d8f7ed256780 (diff)
der-ascii: init at 0.1.0
Diffstat (limited to 'pkgs/tools/security/der-ascii')
-rw-r--r--pkgs/tools/security/der-ascii/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/security/der-ascii/default.nix b/pkgs/tools/security/der-ascii/default.nix
new file mode 100644
index 0000000000000..2bfcc9c370955
--- /dev/null
+++ b/pkgs/tools/security/der-ascii/default.nix
@@ -0,0 +1,27 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "der-ascii";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "google";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1my93m1rx08kn2yms6k8w43byr8k61r1nra4b082j8b393wwxkqc";
+  };
+  vendorSha256 = 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
+  };
+}