mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
cab4a24c34
Arg to lib.optional is a list build time tool in buildInputs
44 lines
1017 B
Nix
44 lines
1017 B
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, fetchurl
|
|
, expat
|
|
, gpgme
|
|
, libgcrypt
|
|
, libxml2
|
|
, libxslt
|
|
, gnutls
|
|
, curl
|
|
, docbook_xsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdatovka";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.nic.cz/datovka/libdatovka/-/archive/v${version}/libdatovka-v${version}.tar.gz";
|
|
sha256 = "sha256-aG7U8jP3pvOeFDetYVOx+cE78ys0uSkKNjSgB09ste8=";
|
|
};
|
|
|
|
patches = [
|
|
./libdatovka-deprecated-fn-curl.patch
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ expat gpgme libgcrypt libxml2 libxslt gnutls curl docbook_xsl ];
|
|
|
|
meta = with lib; {
|
|
description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system";
|
|
homepage = "https://gitlab.nic.cz/datovka/libdatovka";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.ovlach ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|