about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/mfcuk/default.nix
blob: d6736b5b097ae06ae1c3b366a5b49850ee9a6e9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchurl, pkg-config, libnfc }:

stdenv.mkDerivation {
  pname = "mfcuk";
  version = "0.3.8";

  src = fetchurl {
    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mfcuk/mfcuk-0.3.8.tar.gz";
    sha256 = "0m9sy61rsbw63xk05jrrmnyc3xda0c3m1s8pg3sf8ijbbdv9axcp";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libnfc ];

  meta = with lib; {
    description = "MiFare Classic Universal toolKit";
    mainProgram = "mfcuk";
    license = licenses.gpl2;
    homepage = "https://github.com/nfc-tools/mfcuk";
    maintainers = with maintainers; [ offline ];
    platforms = platforms.unix;
  };
}