nixpkgs/pkgs/development/libraries/libcacard/default.nix
2021-01-21 19:11:02 -08:00

23 lines
635 B
Nix

{ lib, stdenv, fetchurl, pkg-config, glib, nss }:
stdenv.mkDerivation rec {
pname = "libcacard";
version = "2.7.0";
src = fetchurl {
url = "https://www.spice-space.org/download/libcacard/${pname}-${version}.tar.xz";
sha256 = "0vyvkk4b6xjwq1ccggql13c1x7g4y90clpkqw28257azgn2a1c8n";
};
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; [ yegortimoshenko ];
platforms = platforms.unix;
};
}