nixpkgs/pkgs/development/libraries/kdsoap/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

2020-07-13 17:38:02 +00:00
{ mkDerivation, lib, fetchurl
, cmake
, qtbase
}:
2021-07-17 17:56:23 +00:00
mkDerivation rec {
2020-07-13 17:38:02 +00:00
pname = "kdsoap";
2021-07-17 17:56:23 +00:00
version = "1.10.0";
2020-07-13 17:38:02 +00:00
meta = {
2020-07-14 14:47:18 +00:00
description = "A Qt-based client-side and server-side SOAP component";
2020-07-13 17:38:02 +00:00
longDescription = ''
KD Soap is a Qt-based client-side and server-side SOAP component.
It can be used to create client applications for web services and also
provides the means to create web services without the need for any further
component such as a dedicated web server.
'';
license = with lib.licenses; [ gpl2 gpl3 lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
src = fetchurl {
url = "https://github.com/KDAB/KDSoap/releases/download/kdsoap-${version}/kdsoap-${version}.tar.gz";
2021-01-19 16:13:01 +00:00
sha256 = "sha256-DGBuzENEZtutsoKYIMoWOvYMx8oib1U7XUAyGWc3M48=";
2020-07-13 17:38:02 +00:00
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase ];
postInstall = ''
moveToOutput bin/kdwsdl2cpp "$dev"
sed -i "$out/lib/cmake/KDSoap/KDSoapTargets.cmake" \
-e "/^ INTERFACE_INCLUDE_DIRECTORIES/ c INTERFACE_INCLUDE_DIRECTORIES \"$dev/include\""
sed -i "$out/lib/cmake/KDSoap/KDSoapTargets-release.cmake" \
-e "s@$out/bin@$dev/bin@"
'';
}