about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libcacard
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libcacard')
-rw-r--r--nixpkgs/pkgs/development/libraries/libcacard/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libcacard/default.nix b/nixpkgs/pkgs/development/libraries/libcacard/default.nix
new file mode 100644
index 000000000000..c484a49b1a2b
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libcacard/default.nix
@@ -0,0 +1,22 @@
+{ 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;
+  };
+}