depot/pkgs/servers/felix/remoteshell.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

15 lines
422 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "1.1.2";
pname = "apache-felix-remoteshell-bundle";
src = fetchurl {
url = "http://apache.proserve.nl/felix/org.apache.felix.shell.remote-${version}.jar";
sha256 = "147zw5ppn98wfl3pr32isyb267xm3gwsvdfdvjr33m9g2v1z69aq";
};
buildCommand =
''
mkdir -p $out/bundle
cp ${src} $out/bundle/org.apache.felix.shell.remote-${version}.jar
'';
}