mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, pcsclite , libusb-compat-0_1, IOKit }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "1.7.11";
|
|
pname = "libacr38u";
|
|
|
|
src = fetchurl {
|
|
url = "http://http.debian.net/debian/pool/main/a/acr38/acr38_1.7.11.orig.tar.bz2";
|
|
sha256 = "0lxbq17y51cablx6bcd89klwnyigvkz0rsf9nps1a97ggnllyzkx";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ pcsclite libusb-compat-0_1 ]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin IOKit;
|
|
|
|
preBuild = ''
|
|
makeFlagsArray=(usbdropdir="$out/pcsc/drivers");
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "ACR38U smartcard reader driver for pcsclite";
|
|
longDescription = ''
|
|
A PC/SC IFD handler implementation for the ACS ACR38U
|
|
smartcard readers. This driver is for the non-CCID version only.
|
|
|
|
This package is needed to communicate with the ACR38U smartcard readers through
|
|
the PC/SC Lite resource manager (pcscd).
|
|
|
|
It can be enabled in /etc/nixos/configuration.nix by adding:
|
|
services.pcscd.enable = true;
|
|
services.pcscd.plugins = [ libacr38u ];
|
|
|
|
The package is based on the debian package libacr38u.
|
|
'';
|
|
homepage = "https://www.acs.com.hk";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ berce ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|