nixpkgs/pkgs/development/interpreters/rascal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
838 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jdk }:
2014-01-14 10:46:46 +01:00
stdenv.mkDerivation rec {
2021-06-20 16:15:21 +02:00
pname = "rascal";
version = "0.6.2";
2014-01-14 10:46:46 +01:00
src = fetchurl {
2021-06-20 16:15:21 +02:00
url = "https://update.rascal-mpl.org/console/${pname}-${version}.jar";
2014-01-14 10:46:46 +01:00
sha256 = "1z4mwdbdc3r24haljnxng8znlfg2ihm9bf9zq8apd9a32ipcw4i6";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jdk ];
2014-01-14 10:46:46 +01:00
2019-06-19 17:45:34 +02:00
dontUnpack = true;
2014-01-14 10:46:46 +01:00
installPhase =
''
mkdir -p $out/bin
makeWrapper ${jdk}/bin/java $out/bin/rascal \
2014-01-25 02:32:39 +01:00
--add-flags "-jar ${src}" \
2014-01-14 10:46:46 +01:00
'';
meta = {
homepage = "https://www.rascal-mpl.org/";
2014-01-14 10:46:46 +01:00
description = "Command-line REPL for the Rascal metaprogramming language";
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
license = lib.licenses.epl10;
maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.unix;
2014-01-14 10:46:46 +01:00
};
}