2014-08-26 01:22:08 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libnfc }:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mfcuk";
|
2014-08-26 01:22:08 +02:00
|
|
|
version = "0.3.8";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-27 01:44:19 +02:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mfcuk/mfcuk-0.3.8.tar.gz";
|
2014-08-26 01:22:08 +02:00
|
|
|
sha256 = "0m9sy61rsbw63xk05jrrmnyc3xda0c3m1s8pg3sf8ijbbdv9axcp";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libnfc ];
|
2014-08-26 01:22:08 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MiFare Classic Universal toolKit";
|
|
|
|
license = licenses.gpl2;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/nfc-tools/mfcuk";
|
2014-08-26 01:22:08 +02:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.unix;
|
2014-08-26 01:22:08 +02:00
|
|
|
};
|
|
|
|
}
|