felix-remoteshell: 1.0.4 -> 1.1.2

This commit is contained in:
Tim Steinbach 2016-11-03 22:15:11 -04:00
parent ad43f28e07
commit 67f5e76030
No known key found for this signature in database
GPG Key ID: 83FF2ACAEB6C2D24

View File

@ -1,14 +1,15 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "apache-felix-remoteshell-bundle-1.0.4"; version = "1.1.2";
name = "apache-felix-remoteshell-bundle-${version}";
src = fetchurl { src = fetchurl {
url = http://apache.proserve.nl/felix/org.apache.felix.shell.remote-1.0.4.jar; url = "http://apache.proserve.nl/felix/org.apache.felix.shell.remote-${version}.jar";
sha256 = "1bgahzs9nnnvfr0yyh9s0r6h1zp2ls6533377rp8r1qk2a4s1gzb"; sha256 = "147zw5ppn98wfl3pr32isyb267xm3gwsvdfdvjr33m9g2v1z69aq";
}; };
buildCommand = buildCommand =
'' ''
mkdir -p $out/bundle mkdir -p $out/bundle
cp ${src} $out/bundle/org.apache.felix.shell.remote-1.0.4.jar cp ${src} $out/bundle/org.apache.felix.shell.remote-${version}.jar
''; '';
} }