2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, nss }:
|
2018-10-12 18:58:38 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libcacard";
|
2021-12-10 09:21:49 +00:00
|
|
|
version = "2.8.1";
|
2018-10-12 18:58:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://www.spice-space.org/download/libcacard/${pname}-${version}.tar.xz";
|
2021-12-10 09:21:49 +00:00
|
|
|
sha256 = "sha256-+79N6Mt9tb3/XstnL/Db5pOfufNEuQDVG6YpUymjMuc=";
|
2018-10-12 18:58:38 +00:00
|
|
|
};
|
|
|
|
|
2021-12-10 09:21:49 +00:00
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i '/--version-script/d' Makefile.in
|
|
|
|
sed -i 's/^vflag = .*$/vflag = ""/' meson.build
|
|
|
|
'';
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-12 18:58:38 +00:00
|
|
|
buildInputs = [ glib nss ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-10-12 18:58:38 +00:00
|
|
|
description = "Smart card emulation library";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://gitlab.freedesktop.org/spice/libcacard";
|
2018-10-12 18:58:38 +00:00
|
|
|
license = licenses.lgpl21;
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2018-10-12 18:58:38 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|