Merge pull request #248522 from katexochen/dumpasn1-init

dumpasn1: init at 20230207.0.0
This commit is contained in:
Pol Dellaiera 2023-08-15 10:52:42 +02:00 committed by GitHub
commit b1e020dcfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 69 additions and 0 deletions

View file

@ -8724,6 +8724,11 @@
githubId = 1927188;
name = "karolchmist";
};
katexochen = {
github = "katexochen";
githubId = 49727155;
name = "Paul Meyer";
};
kayhide = {
email = "kayhide@gmail.com";
github = "kayhide";

View file

@ -0,0 +1,28 @@
From ab8bd63b32b963ddc7346a2dabfd39fba8bfba72 Mon Sep 17 00:00:00 2001
From: Paul Meyer <49727155+katexochen@users.noreply.github.com>
Date: Sun, 13 Aug 2023 14:13:21 +0200
Subject: [PATCH] make config path injectable during build
This way a config path can be added to the list during build by
defining the makro.
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
---
dumpasn1.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dumpasn1.c b/dumpasn1.c
index e7bf268..94f1582 100644
--- a/dumpasn1.c
+++ b/dumpasn1.c
@@ -451,6 +451,10 @@ static const char *configPaths[] = {
/* General environment-based paths */
"$DUMPASN1_PATH/",
+ #ifdef DUMPASN1_CONFIG_PATH
+ DUMPASN1_CONFIG_PATH,
+ #endif /* DUMPASN1_CONFIG_PATH */
+
NULL
};
#endif /* OS-specific search paths */

View file

@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dumpasn1";
version = "20230207.0.0";
src = fetchFromGitHub {
owner = "katexochen";
repo = "dumpasn1";
rev = "v${finalAttrs.version}";
hash = "sha256-r40czSLdjCYbt73zK7exCoP/kMq6+pyJfz9LKJLLaXM=";
};
CFLAGS = ''-DDUMPASN1_CONFIG_PATH='"$(out)/etc/"' '';
makeFlags = [ "prefix=$(out)" ];
patches = [
# Allow adding a config file path during build via makro.
# Used to add the store path of the included config file through CFLAGS.
# This won't be merged upstream.
./configpath.patch
];
meta = with lib; {
description = "Display and debug ASN.1 data";
homepage = "https://github.com/katexochen/dumpasn1";
license = licenses.bsd2;
maintainers = with maintainers; [ katexochen ];
platforms = platforms.linux ++ platforms.darwin;
};
})

View file

@ -7464,6 +7464,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
dumpasn1 = callPackage ../tools/security/dumpasn1 { };
dumptorrent = callPackage ../tools/misc/dumptorrent { };
duo-unix = callPackage ../tools/security/duo-unix { };