2010-01-09 18:06:37 +00:00
|
|
|
{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 = {
|
2010-01-09 21:33:28 +00:00
|
|
|
description = "Smart card applications for use with MUSCLE plugins";
|
2010-01-09 18:06:37 +00:00
|
|
|
homepage = http://muscleapps.alioth.debian.org/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = "BSD"; # http://anonscm.debian.org/viewvc/muscleapps/trunk/muscleTool/COPYING?view=markup
|
2010-01-09 18:06:37 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2014-08-12 11:01:22 +00:00
|
|
|
# XXX: don't build before libmusclecard is fixed
|
|
|
|
# platforms = with stdenv.lib.platforms; linux;
|
2010-01-09 18:06:37 +00:00
|
|
|
};
|
|
|
|
}
|