1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libcacard: init at 2.6.1

This commit is contained in:
Yegor Timoshenko 2018-10-12 18:58:38 +00:00
parent e2d857a332
commit 1ae8d8b793
No known key found for this signature in database
GPG key ID: C3F7D2B9DFA946A1
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, glib, nss }:
stdenv.mkDerivation rec {
name = "libcacard-${version}";
version = "2.6.1";
src = fetchurl {
url = "https://www.spice-space.org/download/libcacard/${name}.tar.xz";
sha256 = "1w6y0kiakhg7dgyf8yqpm4jj6jiv17zhy9lp3d7z32q1pniccxk2";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib nss ];
meta = with stdenv.lib; {
description = "Smart card emulation library";
homepage = https://gitlab.freedesktop.org/spice/libcacard;
license = licenses.lgpl21;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.unix;
};
}

View file

@ -10279,6 +10279,8 @@ with pkgs;
inherit (xorg) libX11 libXext;
};
libcacard = callPackage ../development/libraries/libcacard { };
libcanberra = callPackage ../development/libraries/libcanberra {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};