2019-08-10 12:52:39 +02:00
|
|
|
{stdenv, fetchurl, apacheAnt, jdk, axis2, dbus_java, fetchpatch }:
|
2008-07-06 23:38:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-02-25 22:26:26 +01:00
|
|
|
name = "DisnixWebService-0.8";
|
2010-04-01 16:49:05 +02:00
|
|
|
src = fetchurl {
|
2018-02-25 22:26:26 +01:00
|
|
|
url = https://github.com/svanderburg/DisnixWebService/files/1756703/DisnixWebService-0.8.tar.gz;
|
|
|
|
sha256 = "05hmyz17rmqlph0i321kmhabnpw84kqz32lgc5cd4shxyzsal9hz";
|
2010-04-01 16:49:05 +02:00
|
|
|
};
|
2014-04-25 01:44:48 +02:00
|
|
|
buildInputs = [ apacheAnt jdk ];
|
2010-04-01 16:49:05 +02:00
|
|
|
PREFIX = ''''${env.out}'';
|
|
|
|
AXIS2_LIB = "${axis2}/lib";
|
|
|
|
AXIS2_WEBAPP = "${axis2}/webapps/axis2";
|
|
|
|
DBUS_JAVA_LIB = "${dbus_java}/share/java";
|
2019-08-10 12:52:39 +02:00
|
|
|
patches = [
|
|
|
|
# Safe to remove once https://github.com/svanderburg/DisnixWebService/pull/1 is merged
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/mmahut/DisnixWebService/commit/cf07918b8c81b4ce01e0b489c1b5a3ef9c9a1cd6.patch";
|
|
|
|
sha256 = "15zi1l69wzgwvvqx4492s7l444gfvc9vcm7ckgif4b6cvp837brn";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
prePatch = ''
|
2010-04-01 16:49:05 +02:00
|
|
|
sed -i -e "s|#JAVA_HOME=|JAVA_HOME=${jdk}|" \
|
2014-09-25 16:35:58 +02:00
|
|
|
-e "s|#AXIS2_LIB=|AXIS2_LIB=${axis2}/lib|" \
|
|
|
|
scripts/disnix-soap-client
|
2010-04-01 16:49:05 +02:00
|
|
|
'';
|
|
|
|
buildPhase = "ant";
|
|
|
|
installPhase = "ant install";
|
2011-02-18 16:58:08 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A SOAP interface and client for Disnix";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2011-02-18 16:58:08 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-02-18 16:58:08 +01:00
|
|
|
};
|
2008-07-14 16:41:36 +02:00
|
|
|
}
|