readexe: init at 0.1.3 (#247799)

This commit is contained in:
evils
2025-02-18 18:39:13 +00:00
committed by GitHub
parent 1ab9b7f2e7
commit 3b70ca57e3
+31
View File
@@ -0,0 +1,31 @@
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "readexe";
version = "0.1.3";
src = fetchFromGitHub {
owner = "segin";
repo = "readexe";
tag = "v${finalAttrs.version}";
hash = "sha256-CT1EZQ3t7+5onmcUz5yGxDI24dyelUwYZFcL8YWZgPw=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Reads out structural information on Microsoft .exe formats";
homepage = "https://github.com/segin/readexe";
license = with licenses; [
isc
bsd3
];
maintainers = with maintainers; [ evils ];
mainProgram = "readexe";
};
})