about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFelix Richter <makefu@users.noreply.github.com>2018-10-02 00:39:48 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-02 00:39:48 +0200
commit46e284aedd03111d9718487a6c3230f86e4b95f5 (patch)
tree0b13c6ff163433f4cae5eeef566add3008dcf25a /pkgs/tools/security
parentc1dbb90bfdc3b13aa5976973a621fc104a0e55fb (diff)
downloadnixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar.gz
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar.bz2
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar.lz
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar.xz
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.tar.zst
nixlib-46e284aedd03111d9718487a6c3230f86e4b95f5.zip
ifdnfc: init at 2016-03-01 (#47625)
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/ifdnfc/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/tools/security/ifdnfc/default.nix b/pkgs/tools/security/ifdnfc/default.nix
new file mode 100644
index 000000000000..5731f3ef8bb6
--- /dev/null
+++ b/pkgs/tools/security/ifdnfc/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchFromGitHub , pkgconfig
+, pcsclite
+, autoreconfHook
+, libnfc
+}:
+
+stdenv.mkDerivation rec {
+  name = "ifdnfc-${version}";
+  version = "2016-03-01";
+
+  src = fetchFromGitHub {
+    owner = "nfc-tools";
+    repo = "ifdnfc";
+    rev = "0e48e8e";
+    sha256 = "1cxnvhhlcbm8h49rlw5racspb85fmwqqhd3gzzpzy68vrs0b37vg";
+  };
+  nativeBuildInputs = [ pkgconfig autoreconfHook ];
+  buildInputs = [ pcsclite libnfc ];
+
+  configureFlags = [ "--prefix=$(out)" ];
+  makeFlags = [ "DESTDIR=/" "usbdropdir=$(out)/pcsc/drivers" ];
+
+  meta = with stdenv.lib; {
+    description = "PC/SC IFD Handler based on libnfc";
+    longDescription =
+    '' libnfc Interface Plugin to be used in <code>services.pcscd.plugins</code>.
+       It provides support for all readers which are not supported by ccid but by libnfc.
+
+       For activating your reader you need to run
+       <code>ifdnfc-activate yes<code> with this package in your
+       <code>environment.systemPackages</code>
+
+       To use your reader you may need to blacklist your reader kernel modules:
+       <code>boot.blacklistedKernelModules = [ "pn533" "pn533_usb" "nfc" ];</code>
+
+       Supports the pn533 smart-card reader chip which is for example used in
+       the SCM SCL3711.
+    '';
+    homepage = https://github.com/nfc-tools/ifdnfc;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ makefu ];
+  };
+}
+