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

44 lines
1.2 KiB
Nix
Raw Normal View History

2021-08-07 20:49:29 +00:00
{ mkDerivation
, lib
, fetchurl
2020-07-13 17:38:02 +00:00
, cmake
, qtbase
}:
2021-07-17 17:56:23 +00:00
mkDerivation rec {
2020-07-13 17:38:02 +00:00
pname = "kdsoap";
2021-07-25 16:36:29 +00:00
version = "2.0.0";
2020-07-13 17:38:02 +00:00
src = fetchurl {
url = "https://github.com/KDAB/KDSoap/releases/download/kdsoap-${version}/kdsoap-${version}.tar.gz";
2021-07-25 16:36:29 +00:00
sha256 = "sha256-0YljEE+m99ArBEYxzdvnjxj3DgbGB69oDHrOBNbPBO4=";
2020-07-13 17:38:02 +00:00
};
2021-08-07 20:49:29 +00:00
2020-07-13 17:38:02 +00:00
outputs = [ "out" "dev" ];
2021-08-07 20:49:29 +00:00
2020-07-13 17:38:02 +00:00
nativeBuildInputs = [ cmake ];
2021-08-07 20:49:29 +00:00
2020-07-13 17:38:02 +00:00
buildInputs = [ qtbase ];
2021-08-07 20:49:29 +00:00
2020-07-13 17:38:02 +00:00
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@"
'';
2021-08-07 20:49:29 +00:00
meta = with lib; {
description = "A Qt-based client-side and server-side SOAP component";
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 licenses; [ gpl2 gpl3 lgpl21 ];
maintainers = [ maintainers.ttuegel ];
};
2020-07-13 17:38:02 +00:00
}