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

  src = fetchurl {
    url = https://alioth.debian.org/frs/download.php/3180/muscletool-2.1.1.tar.bz2;
    sha256 = "11d812ijvhsaxwkr05hzxfl0n6ji9hwl5j1kv56f9gv8kyy3b9kw";
  };

  buildInputs = [ libmusclecard pcsclite pkgconfig ];

  meta = {
    description = "Smart card applications for use with MUSCLE plugins";
    homepage = http://muscleapps.alioth.debian.org/;
    license = "BSD"; # http://anonscm.debian.org/viewvc/muscleapps/trunk/muscleTool/COPYING?view=markup
    maintainers = with stdenv.lib.maintainers; [viric];
    # XXX: don't build before libmusclecard is fixed
    # platforms = with stdenv.lib.platforms; linux;
  };
}