summary refs log tree commit diff
path: root/pkgs/development/libraries/libmusclecard/default.nix
blob: af235b833826aef4584786556b181f675d0063e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl, pkgconfig, pcsclite}:
stdenv.mkDerivation {
  name = "libmusclecard-1.3.6";

  src = fetchurl {
    url = https://alioth.debian.org/frs/download.php/3024/libmusclecard-1.3.6.tar.bz2;
    sha256 = "1sswy7vcy0w9p6818al7prv9d3whj7w3w98k55zw9nhspbj6lppb";
  };

  # The OS should care on preparing the services into this location
  configureFlags = [ "--enable-muscledropdir=/var/lib/pcsc/services" ];

  buildInputs = [ pkgconfig pcsclite ];

  meta = {
    description = "Library for MUSCLE smartcard applications";
    homepage = http://pcsclite.alioth.debian.org/;
    license = "BSD";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
    broken = true;
  };
}