1{ stdenv, fetchurl, pkgconfig, libnfc }:
2
3stdenv.mkDerivation rec {
4 name = "mfcuk-${version}";
5 version = "0.3.8";
6
7 src = fetchurl {
8 url = "http://mfcuk.googlecode.com/files/mfcuk-0.3.8.tar.gz";
9 sha256 = "0m9sy61rsbw63xk05jrrmnyc3xda0c3m1s8pg3sf8ijbbdv9axcp";
10 };
11
12 buildInputs = [ pkgconfig libnfc ];
13
14 meta = with stdenv.lib; {
15 description = "MiFare Classic Universal toolKit";
16 license = licenses.gpl2;
17 homepage = http://code.google.com/p/mfcuk/;
18 maintainers = with maintainers; [ offline ];
19 platforms = platforms.unix;
20 };
21}