9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
23 lines
637 B
Nix
23 lines
637 B
Nix
{ 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 stdenv.lib; {
|
|
description = "Smart card emulation library";
|
|
homepage = "https://gitlab.freedesktop.org/spice/libcacard";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|