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

stdenv.mkDerivation rec {
  name = "mfcuk-${version}";
  version = "0.3.8";

  src = fetchurl {
    url = "http://mfcuk.googlecode.com/files/mfcuk-0.3.8.tar.gz";
    sha256 = "0m9sy61rsbw63xk05jrrmnyc3xda0c3m1s8pg3sf8ijbbdv9axcp";
  };

  buildInputs = [ pkgconfig libnfc ];

  meta = with stdenv.lib; {
    description = "MiFare Classic Universal toolKit";
    license = licenses.gpl2;
    homepage = http://code.google.com/p/mfcuk/;
    maintainers = with maintainers; [ offline ];
    platforms = platforms.unix;
  };
}