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