Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
902 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
libnfc,
xz,
}:
stdenv.mkDerivation {
pname = "mfoc-hardnested";
version = "0-unstable-2023-03-27";
src = fetchFromGitHub {
owner = "nfc-tools";
repo = "mfoc-hardnested";
rev = "a6007437405a0f18642a4bbca2eeba67c623d736";
hash = "sha256-YcUMS4wx5ML4yYiARyfm7T7nLomgG9YCSFj+ZUg5XZk=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libnfc
xz
];
meta = with lib; {
description = "Fork of mfoc integrating hardnested code from the proxmark";
mainProgram = "mfoc-hardnested";
license = licenses.gpl2;
homepage = "https://github.com/nfc-tools/mfoc-hardnested";
changelog = "https://github.com/nfc-tools/mfoc-hardnested/blob/master/debian/changelog";
maintainers = with maintainers; [ azuwis ];
platforms = platforms.unix;
};
}