nixpkgs/pkgs/servers/felix/remoteshell.nix
Eelco Dolstra c556a6ea46 * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
function, so obsolete it.

svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2012-01-18 20:16:00 +00:00

15 lines
395 B
Nix

{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
'';
}