felix: 2.0.5 -> 5.6.1, fix build

The old source was 404
This commit is contained in:
Joachim Fasting 2017-01-28 23:01:28 +01:00
parent 4d059f6f27
commit ba1aeb8cae
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -1,10 +1,11 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "apache-felix-2.0.5"; name = "apache-felix-${version}";
version = "5.6.1";
src = fetchurl { src = fetchurl {
url = http://apache.xl-mirror.nl/felix/org.apache.felix.main.distribution-2.0.5.tar.gz; url = "mirror://apache/felix/org.apache.felix.main.distribution-${version}.tar.gz";
sha256 = "14nva0q1b45kmmalcls5yx97syd4vn3vcp8gywck1098qhidi66g"; sha256 = "0kis26iajzdid162j4i7g558q09x4hn9z7pqqys6ipb0fj84hz1x";
}; };
buildCommand = buildCommand =
'' ''
@ -15,7 +16,7 @@ stdenv.mkDerivation {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "An OSGi gateway"; description = "An OSGi gateway";
homepage = http://felix.apache.org; homepage = https://felix.apache.org;
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.sander ]; maintainers = [ maintainers.sander ];
}; };