nixpkgs/pkgs/by-name/wo/workcraft/package.nix

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

34 lines
928 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, jre, makeWrapper }:
2018-03-20 16:33:56 +00:00
stdenv.mkDerivation rec {
pname = "workcraft";
2024-09-02 16:25:47 +00:00
version = "3.5.1";
2018-03-20 16:33:56 +00:00
src = fetchurl {
url = "https://github.com/workcraft/workcraft/releases/download/v${version}/workcraft-v${version}-linux.tar.gz";
2024-09-02 16:25:47 +00:00
sha256 = "sha256-326iDxQ1t9iih2JVRO07C41V5DtkUzwkcNHCz5kLHT8=";
2018-03-20 16:33:56 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2018-03-20 16:33:56 +00:00
2021-07-14 14:33:41 +00:00
dontConfigure = true;
2018-03-20 16:33:56 +00:00
installPhase = ''
mkdir -p $out/share
cp -r * $out/share
mkdir $out/bin
makeWrapper $out/share/workcraft $out/bin/workcraft \
--set JAVA_HOME "${jre}" \
--set _JAVA_OPTIONS '-Dawt.useSystemAAFontSettings=gasp';
'';
meta = {
2020-03-04 13:41:09 +00:00
homepage = "https://workcraft.org/";
2018-03-20 16:33:56 +00:00
description = "Framework for interpreted graph modeling, verification and synthesis";
mainProgram = "workcraft";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ timor ];
2018-03-20 16:33:56 +00:00
};
}