3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libcacard/default.nix
R. RyanTM f52fb530a4 libcacard: 2.6.1 -> 2.7.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libcacard/versions
2019-08-04 08:24:07 -07:00

23 lines
631 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, nss }:
stdenv.mkDerivation rec {
name = "libcacard-${version}";
version = "2.7.0";
src = fetchurl {
url = "https://www.spice-space.org/download/libcacard/${name}.tar.xz";
sha256 = "0vyvkk4b6xjwq1ccggql13c1x7g4y90clpkqw28257azgn2a1c8n";
};
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;
};
}