summary refs log blame commit diff
path: root/pkgs/development/libraries/libisds/default.nix
blob: 268acb2f948dc89c387e6a9b0c722d292792965b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
             











                         
                     


                                                                         
                                                                    







                                                                           
                    






                                                                                                                      
{ lib, stdenv
, fetchurl
, expat
, gpgme
, libgcrypt
, libxml2
, libxslt
, curl
, docbook_xsl
}:

stdenv.mkDerivation rec {
  pname = "libisds";
  version = "0.11.1";

  src = fetchurl {
    url = "http://xpisar.wz.cz/${pname}/dist/${pname}-${version}.tar.xz";
    sha256 = "1n1vl05p78fksv6dm926rngd3wag41gyfbq76ajzcmq08j32y7y1";
  };

  configureFlags = [
    "--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook"
  ];

  buildInputs = [ expat gpgme libgcrypt libxml2 libxslt curl docbook_xsl ];

  meta = with lib; {
    description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system";
    homepage = "http://xpisar.wz.cz/libisds/";
    license = licenses.lgpl3;
    maintainers = [ maintainers.mmahut ];
    platforms = platforms.linux;
  };
}