forked from mirrors/nixpkgs
felix: 2.0.5 -> 5.6.1, fix build
The old source was 404
This commit is contained in:
parent
4d059f6f27
commit
ba1aeb8cae
|
@ -1,10 +1,11 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "apache-felix-2.0.5";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "apache-felix-${version}";
|
||||
version = "5.6.1";
|
||||
src = fetchurl {
|
||||
url = http://apache.xl-mirror.nl/felix/org.apache.felix.main.distribution-2.0.5.tar.gz;
|
||||
sha256 = "14nva0q1b45kmmalcls5yx97syd4vn3vcp8gywck1098qhidi66g";
|
||||
url = "mirror://apache/felix/org.apache.felix.main.distribution-${version}.tar.gz";
|
||||
sha256 = "0kis26iajzdid162j4i7g558q09x4hn9z7pqqys6ipb0fj84hz1x";
|
||||
};
|
||||
buildCommand =
|
||||
''
|
||||
|
@ -15,7 +16,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "An OSGi gateway";
|
||||
homepage = http://felix.apache.org;
|
||||
homepage = https://felix.apache.org;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.sander ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue