mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
28 lines
774 B
Nix
28 lines
774 B
Nix
{ lib, stdenv, fetchurl, pkg-config, glib, nss }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcacard";
|
|
version = "2.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.spice-space.org/download/libcacard/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-+79N6Mt9tb3/XstnL/Db5pOfufNEuQDVG6YpUymjMuc=";
|
|
};
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
sed -i '/--version-script/d' Makefile.in
|
|
sed -i 's/^vflag = .*$/vflag = ""/' meson.build
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glib nss ];
|
|
|
|
meta = with lib; {
|
|
description = "Smart card emulation library";
|
|
homepage = "https://gitlab.freedesktop.org/spice/libcacard";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|