mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
cbcd016672
https://hydra.nixos.org/build/209890917 https://repo.or.cz/libisds.git/commit/25acc6d44db3eb5f944a6992336b00ae97c85e20
36 lines
872 B
Nix
36 lines
872 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, expat
|
|
, gpgme
|
|
, libgcrypt
|
|
, libxml2
|
|
, libxslt
|
|
, curl
|
|
, docbook_xsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libisds";
|
|
version = "0.11.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://xpisar.wz.cz/${pname}/dist/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-YUb4N7J7EaYHHiFI965kUhtNitRTJfmY/ns3MTfkGPs=";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook"
|
|
];
|
|
|
|
buildInputs = [ expat gpgme libgcrypt libxml2 libxslt curl docbook_xsl ];
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ];
|
|
|
|
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;
|
|
};
|
|
}
|