summary refs log tree commit diff
path: root/pkgs/servers/felix/remoteshell.nix
blob: 6e8089d32e97746e0e180de9adb84e43671ae414 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl}:

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