mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
807 B
Nix
35 lines
807 B
Nix
{ 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;
|
|
};
|
|
}
|