libcacard: init at 2.6.1
This commit is contained in:
parent
e2d857a332
commit
1ae8d8b793
22
pkgs/development/libraries/libcacard/default.nix
Normal file
22
pkgs/development/libraries/libcacard/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user