mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Fixing the descsription of some packages. Previously I misunderstood what
they were for, in particular. svn path=/nixpkgs/trunk/; revision=19321
This commit is contained in:
parent
517fdec44b
commit
abffb0bdcb
|
@ -13,8 +13,8 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ pkgconfig pcsclite ];
|
||||
|
||||
meta = {
|
||||
description = "Smart card framework";
|
||||
homepage = http://muscleplugins.alioth.debian.org/;
|
||||
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;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
# The tarball has different plugins in it, and as I don't need all of them,
|
||||
# I only build one of those in this derivation
|
||||
# This is an arbitrary decision, and this simplicity fit my needs.
|
||||
# Anyone can extend the extension to build all the plugins, or to make
|
||||
# different derivations for each plugin.
|
||||
|
||||
{stdenv, fetchurl, libmusclecard, pkgconfig, pcsclite}:
|
||||
stdenv.mkDerivation {
|
||||
name = "muscleframework-mcardplugin-1.1.7";
|
||||
|
@ -15,7 +21,7 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ libmusclecard pkgconfig pcsclite];
|
||||
|
||||
meta = {
|
||||
description = "Smart card framework";
|
||||
description = "MUSCLE smart card framework - mcard plugin";
|
||||
homepage = http://muscleplugins.alioth.debian.org/;
|
||||
license = "BSD";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ libmusclecard pcsclite pkgconfig ];
|
||||
|
||||
meta = {
|
||||
description = "Smart card applications for use with muscle plugins";
|
||||
description = "Smart card applications for use with MUSCLE plugins";
|
||||
homepage = http://muscleapps.alioth.debian.org/;
|
||||
license = "BSD";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
|
|
Loading…
Reference in a new issue