Skip to content

Commit

Permalink
felix: 2.0.5 -> 5.6.1, fix build
Browse files Browse the repository at this point in the history
The old source was 404
  • Loading branch information
joachifm committed Jan 28, 2017
1 parent 4d059f6 commit ba1aeb8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/servers/felix/default.nix
@@ -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 =
''
Expand All @@ -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 ];
};
Expand Down

0 comments on commit ba1aeb8

Please sign in to comment.