lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 22 lines 550 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "apache-felix-2.0.5"; 5 src = fetchurl { 6 url = http://apache.xl-mirror.nl/felix/org.apache.felix.main.distribution-2.0.5.tar.gz; 7 sha256 = "14nva0q1b45kmmalcls5yx97syd4vn3vcp8gywck1098qhidi66g"; 8 }; 9 buildCommand = 10 '' 11 tar xfvz $src 12 cd felix-framework-* 13 mkdir -p $out 14 cp -av * $out 15 ''; 16 meta = with stdenv.lib; { 17 description = "An OSGi gateway"; 18 homepage = http://felix.apache.org; 19 license = licenses.asl20; 20 maintainers = [ maintainers.sander ]; 21 }; 22}