python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / mfcuk / default.nix
blob3128a787807ae6870a09060fff101aec68514c68
1 { lib, stdenv, fetchurl, pkg-config, libnfc }:
3 stdenv.mkDerivation {
4   pname = "mfcuk";
5   version = "0.3.8";
7   src = fetchurl {
8     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mfcuk/mfcuk-0.3.8.tar.gz";
9     sha256 = "0m9sy61rsbw63xk05jrrmnyc3xda0c3m1s8pg3sf8ijbbdv9axcp";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libnfc ];
15   meta = with lib; {
16     description = "MiFare Classic Universal toolKit";
17     license = licenses.gpl2;
18     homepage = "https://github.com/nfc-tools/mfcuk";
19     maintainers = with maintainers; [ offline ];
20     platforms = platforms.unix;
21   };