1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/security/mfcuk/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

23 lines
592 B
Nix

{ 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ 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 = platforms.unix;
};
}