nixpkgs/pkgs/development/tools/jbang/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-10 03:45:01 +00:00
{ stdenv, lib, fetchzip, jdk, makeWrapper, coreutils, curl }:
stdenv.mkDerivation rec {
2021-06-26 17:30:06 +00:00
version = "0.72.0";
2021-01-10 03:45:01 +00:00
pname = "jbang";
src = fetchzip {
url = "https://github.com/jbangdev/jbang/releases/download/v${version}/${pname}-${version}.tar";
2021-06-26 17:30:06 +00:00
sha256 = "sha256-QMbkxfGJOMNTILmGYhbUdtq4zfe0Cc/IBftFdM+rT9c=";
2021-01-10 03:45:01 +00:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
rm bin/jbang.{cmd,ps1}
rmdir tmp
cp -r . $out
wrapProgram $out/bin/jbang \
--set JAVA_HOME ${jdk} \
--set PATH ${lib.makeBinPath [ coreutils jdk curl ]}
runHook postInstall
'';
installCheckPhase = ''
$out/bin/jbang --version 2>&1 | grep -q "${version}"
'';
meta = with lib; {
2021-01-10 03:45:01 +00:00
description = "Run java as scripts anywhere";
longDescription = ''
jbang uses the java language to build scripts similar to groovy scripts. Dependencies are automatically
downloaded and the java code runs.
'';
homepage = "https://https://www.jbang.dev/";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ moaxcp ];
};
}