mfoc-hardnested: init at unstable-2021-08-14

This commit is contained in:
Zhong Jianxin 2023-02-18 22:05:10 +08:00
parent f47ea8fbf7
commit 2cf29e4635
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnfc, xz }:
stdenv.mkDerivation rec {
pname = "mfoc-hardnested";
version = "unstable-2021-08-14";
src = fetchFromGitHub {
owner = "nfc-tools";
repo = pname;
rev = "2c25bf05a0b13827b9d06382c5d384b2e5c88238";
hash = "sha256-fhfevQCw0E5TorHx61Vltpmv7DAjgH73i27O7aBKxz4=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libnfc xz ];
meta = with lib; {
description = "A fork of mfoc integrating hardnested code from the proxmark";
license = licenses.gpl2;
homepage = "https://github.com/nfc-tools/mfoc-hardnested";
maintainers = with maintainers; [ azuwis ];
platforms = platforms.unix;
broken = (stdenv.isDarwin && stdenv.isAarch64); # Undefined symbols "_memalign" referenced
};
}

View file

@ -9762,6 +9762,8 @@ with pkgs;
mfoc = callPackage ../tools/security/mfoc { };
mfoc-hardnested = callPackage ../tools/security/mfoc-hardnested { };
microbin = callPackage ../servers/microbin { };
microdnf = callPackage ../tools/package-management/microdnf { };