chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mf / mfoc-hardnested / package.nix
blobb8b46e45c7a1df6dd1d9eea8ce327d6052c37a95
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 , libnfc
7 , xz
8 }:
10 stdenv.mkDerivation {
11   pname = "mfoc-hardnested";
12   version = "unstable-2023-03-27";
14   src = fetchFromGitHub {
15     owner = "nfc-tools";
16     repo = "mfoc-hardnested";
17     rev = "a6007437405a0f18642a4bbca2eeba67c623d736";
18     hash = "sha256-YcUMS4wx5ML4yYiARyfm7T7nLomgG9YCSFj+ZUg5XZk=";
19   };
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24   ];
26   buildInputs = [
27     libnfc
28     xz
29   ];
31   meta = with lib; {
32     description = "Fork of mfoc integrating hardnested code from the proxmark";
33     mainProgram = "mfoc-hardnested";
34     license = licenses.gpl2;
35     homepage = "https://github.com/nfc-tools/mfoc-hardnested";
36     changelog = "https://github.com/nfc-tools/mfoc-hardnested/blob/master/debian/changelog";
37     maintainers = with maintainers; [ azuwis ];
38     platforms = platforms.unix;
39   };