1{
2 lib,
3 stdenv,
4 fetchurl,
5 expat,
6 gpgme,
7 libgcrypt,
8 libxml2,
9 libxslt,
10 curl,
11 docbook_xsl,
12}:
13
14stdenv.mkDerivation rec {
15 pname = "libisds";
16 version = "0.11.2";
17
18 src = fetchurl {
19 url = "http://xpisar.wz.cz/${pname}/dist/${pname}-${version}.tar.xz";
20 sha256 = "sha256-YUb4N7J7EaYHHiFI965kUhtNitRTJfmY/ns3MTfkGPs=";
21 };
22
23 configureFlags = [
24 "--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook"
25 ];
26
27 buildInputs = [
28 expat
29 gpgme
30 libgcrypt
31 libxml2
32 libxslt
33 curl
34 docbook_xsl
35 ];
36
37 NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ];
38
39 meta = with lib; {
40 description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system";
41 homepage = "http://xpisar.wz.cz/libisds/";
42 license = licenses.lgpl3;
43 maintainers = [ maintainers.mmahut ];
44 platforms = platforms.linux;
45 };
46}