base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / security / pcsc-tools / default.nix
blob39efa566553dbc8c348009e54845c2e55653104c
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , autoconf-archive
5 , autoreconfHook
6 , gobject-introspection
7 , makeWrapper
8 , pkg-config
9 , wrapGAppsHook3
10 , systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd
11 , dbusSupport ? stdenv.hostPlatform.isLinux, dbus
12 , pcsclite
13 , PCSC
14 , wget
15 , coreutils
16 , perlPackages
17 , testers
18 , nix-update-script
20 # gui does not cross compile properly
21 , withGui ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
24 assert systemdSupport -> dbusSupport;
26 stdenv.mkDerivation (finalAttrs: {
27   pname = "pcsc-tools";
28   version = "1.7.2";
30   src = fetchFromGitHub {
31     owner = "LudovicRousseau";
32     repo = "pcsc-tools";
33     rev = "refs/tags/${finalAttrs.version}";
34     hash = "sha256-5a3sVcFEFzBkbRKUqlCPV7sL3O17G7hDVpxLpAWofdE=";
35   };
37   configureFlags = [
38     "--datarootdir=${placeholder "out"}/share"
39   ];
41   buildInputs = lib.optionals dbusSupport [
42     dbus
43   ] ++ [
44     perlPackages.perl pcsclite
45   ] ++ lib.optional stdenv.hostPlatform.isDarwin PCSC
46     ++ lib.optional systemdSupport systemd;
48   nativeBuildInputs = [
49     autoconf-archive
50     autoreconfHook
51     makeWrapper
52     pkg-config
53   ] ++ lib.optionals withGui [
54     gobject-introspection
55     wrapGAppsHook3
56   ];
58   preFixup = ''
59     makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
60   '';
62   postInstall = ''
63     wrapProgram $out/bin/scriptor \
64       --set PERL5LIB "${with perlPackages; makePerlPath [ ChipcardPCSC libintl-perl ]}"
66   '' + lib.optionalString withGui ''
67     wrapProgram $out/bin/gscriptor \
68       ''${makeWrapperArgs[@]} \
69       --set PERL5LIB "${with perlPackages; makePerlPath [
70           ChipcardPCSC
71           libintl-perl
72           GlibObjectIntrospection
73           Glib
74           Gtk3
75           Pango
76           Cairo
77           CairoGObject
78       ]}"
79   '' + ''
81     wrapProgram $out/bin/ATR_analysis \
82       --set PERL5LIB "${with perlPackages; makePerlPath [ ChipcardPCSC libintl-perl ]}"
84     wrapProgram $out/bin/pcsc_scan \
85       --prefix PATH : "$out/bin:${lib.makeBinPath [ coreutils wget ]}"
87     install -Dm444 -t $out/share/pcsc smartcard_list.txt
88   '';
90   passthru = {
91     tests.version = testers.testVersion {
92       package = finalAttrs.finalPackage;
93       command = "pcsc_scan -V";
94     };
95     updateScript = nix-update-script { };
96   };
98   meta = with lib; {
99     description = "Tools used to test a PC/SC driver, card or reader";
100     homepage = "https://pcsc-tools.apdu.fr/";
101     changelog = "https://github.com/LudovicRousseau/pcsc-tools/releases/tag/${finalAttrs.version}";
102     license = licenses.gpl2Plus;
103     mainProgram = "pcsc_scan";
104     maintainers = with maintainers; [ peterhoeg anthonyroussel ];
105     platforms = platforms.unix;
106   };