Adding more muscle programs and libraries.

svn path=/nixpkgs/trunk/; revision=19320
This commit is contained in:
Lluís Batlle i Rossell
2010-01-09 18:06:37 +00:00
parent 56cfcdb27f
commit 517fdec44b
4 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{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 = "Smart card framework";
homepage = http://muscleplugins.alioth.debian.org/;
license = "BSD";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}