9 stdenv.mkDerivation rec {
14 url = "mirror://maven/com/aestasit/infrastructure/${pname}/${pname}/${version}/${pname}-${version}.zip";
15 sha256 = "134qlx90y82g1rfxhyn12z9r2imm1l3fz09hrrn3pgcdcq5jz2s1";
18 nativeBuildInputs = [ makeWrapper ];
23 wrapProgram $out/bin/sshoogr \
24 --prefix JAVA_HOME : ${jdk}
29 A Groovy-based DSL for working with remote SSH servers
31 mainProgram = "sshoogr";
33 The sshoogr (pronounced [ʃʊgə]) is a Groovy-based DSL library for working
34 with remote servers through SSH. The DSL allows: connecting, executing
35 remote commands, copying files and directories, creating tunnels in a
36 simple and concise way.
38 homepage = "https://github.com/aestasit/sshoogr";
39 license = licenses.asl20;
40 platforms = platforms.all;
41 maintainers = with maintainers; [ moaxcp ];