Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 34 lines 807 B view raw
1{ stdenv 2, fetchurl 3, expat 4, gpgme 5, libgcrypt 6, libxml2 7, libxslt 8, curl 9, docbook_xsl 10}: 11 12stdenv.mkDerivation rec { 13 pname = "libisds"; 14 version = "0.11"; 15 16 src = fetchurl { 17 url = "http://xpisar.wz.cz/${pname}/dist/${pname}-${version}.tar.xz"; 18 sha256 = "1cy161l7rl25xji2xpb9vjpvg02bc7mwd4fpp2sx9zhpifn5dfbr"; 19 }; 20 21 configureFlags = [ 22 "--with-docbook-xsl-stylesheets=${docbook_xsl}/xml/xsl/docbook" 23 ]; 24 25 buildInputs = [ expat gpgme libgcrypt libxml2 libxslt curl docbook_xsl ]; 26 27 meta = with stdenv.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 }; 34}