python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libisds / default.nix
blob9d2732c44096fd0d6a483b3c90e296aeb9664f57
1 { lib, stdenv
2 , fetchurl
3 , expat
4 , gpgme
5 , libgcrypt
6 , libxml2
7 , libxslt
8 , curl
9 , docbook_xsl
12 stdenv.mkDerivation rec {
13   pname = "libisds";
14   version = "0.11.2";
16   src = fetchurl {
17     url = "http://xpisar.wz.cz/${pname}/dist/${pname}-${version}.tar.xz";
18     sha256 = "sha256-YUb4N7J7EaYHHiFI965kUhtNitRTJfmY/ns3MTfkGPs=";
19   };
21   configureFlags = [
22     "--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook"
23   ];
25   buildInputs = [ expat gpgme libgcrypt libxml2 libxslt curl docbook_xsl ];
27   meta = with lib; {
28     description = "Client library for accessing SOAP services of Czech government-provided Databox infomation system";
29     homepage = "http://xpisar.wz.cz/libisds/";
30     license = licenses.lgpl3;
31     maintainers = [ maintainers.mmahut ];
32     platforms = platforms.linux;
33   };