mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
Add mfcuk, tool for hacking mifare classic cards
This commit is contained in:
parent
74625641f8
commit
12c3f65173
21
pkgs/tools/security/mfcuk/default.nix
Normal file
21
pkgs/tools/security/mfcuk/default.nix
Normal file
|
@ -0,0 +1,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 = with platforms; unix;
|
||||
};
|
||||
}
|
|
@ -1500,6 +1500,8 @@ let
|
|||
|
||||
megatools = callPackage ../tools/networking/megatools { };
|
||||
|
||||
mfcuk = callPackage ../tools/security/mfcuk { };
|
||||
|
||||
minecraft = callPackage ../games/minecraft { };
|
||||
|
||||
minecraft-server = callPackage ../games/minecraft-server { };
|
||||
|
|
Loading…
Reference in a new issue