nixpkgs/pkgs/development/libraries/aqbanking/libchipcard.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

33 lines
1,013 B
Nix

{ stdenv, fetchurl, pkgconfig, gwenhywfar, pcsclite, zlib }:
stdenv.mkDerivation rec {
name = "libchipcard-${version}";
version = "5.0.4";
src = let
inherit ((import ./sources.nix).libchipcard) sha256 releaseId;
qstring = "package=02&release=${releaseId}&file=01";
mkURLs = map (base: "${base}/sites/download/download.php?${qstring}");
in fetchurl {
name = "${name}.tar.gz";
urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ];
inherit sha256;
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gwenhywfar pcsclite zlib ];
makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ];
configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ];
meta = with stdenv.lib; {
description = "Library for access to chipcards";
homepage = http://www2.aquamaniac.de/sites/download/packages.php?package=02&showall=1;
license = licenses.lgpl21;
maintainers = with maintainers; [ aszlig ];
platforms = platforms.linux;
};
}