Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / mf / mfoc-hardnested / package.nix
blob550d3a5c4667703c4fcc226e1151130d813ca6f1
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 , libnfc
7 , xz
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "mfoc-hardnested";
12   version = "unstable-2023-03-27";
14   src = fetchFromGitHub {
15     owner = "nfc-tools";
16     repo = finalAttrs.pname;
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 = "A fork of mfoc integrating hardnested code from the proxmark";
33     license = licenses.gpl2;
34     homepage = "https://github.com/nfc-tools/mfoc-hardnested";
35     maintainers = with maintainers; [ azuwis ];
36     platforms = platforms.unix;
37   };