summary refs log tree commit diff
path: root/pkgs/tools/security/mfoc/default.nix
blob: a223b3e835ae70a7c91f43a468338f286208330c (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
{ stdenv, fetchurl, pkgconfig, libnfc }:

stdenv.mkDerivation rec {
  name = "mfoc-${version}";
  version = "0.10.6";

  src = fetchurl {
    url = "http://mfoc.googlecode.com/files/${name}.tar.gz";
    sha1 = "3adce3029dce9124ff3bc7d0fad86fa0c374a9e3";
  };

  patches = [./mf_mini.patch];

  buildInputs = [ pkgconfig libnfc ];

  meta = with stdenv.lib; {
    description = "Mifare Classic Offline Cracker";
    license = licenses.gpl2;
    homepage = http://code.google.com/p/mfoc/;
    maintainers = with maintainers; [ offline ];
    platforms = platforms.unix;
  };
}