nixpkgs/pkgs/tools/security/mfoc/default.nix
2017-11-03 18:52:28 +00:00

25 lines
657 B
Nix

{ stdenv, fetchurl, pkgconfig, libnfc }:
stdenv.mkDerivation rec {
name = "mfoc-${version}";
version = "0.10.6";
src = fetchurl {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mfoc/${name}.tar.gz";
sha1 = "3adce3029dce9124ff3bc7d0fad86fa0c374a9e3";
};
patches = [./mf_mini.patch];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnfc ];
meta = with stdenv.lib; {
description = "Mifare Classic Offline Cracker";
license = licenses.gpl2;
homepage = https://github.com/nfc-tools/mfoc;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}