2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, jre, makeWrapper, makeDesktopItem }:
|
2015-05-09 00:23:30 +01:00
|
|
|
|
2021-11-10 04:24:19 +00:00
|
|
|
let generic = { version, sha256 }:
|
2018-09-26 17:46:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-10 04:24:19 +00:00
|
|
|
pname = "alloy${lib.versions.major version}";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
inherit sha256;
|
|
|
|
url = "https://github.com/AlloyTools/org.alloytools.alloy/releases/download/v${version}/org.alloytools.alloy.dist.jar";
|
|
|
|
};
|
2015-05-09 00:23:30 +01:00
|
|
|
|
2018-09-26 17:46:58 +01:00
|
|
|
desktopItem = makeDesktopItem rec {
|
2021-11-10 04:24:19 +00:00
|
|
|
name = pname;
|
2018-09-26 17:46:58 +01:00
|
|
|
exec = name;
|
|
|
|
icon = name;
|
2021-11-10 04:24:19 +00:00
|
|
|
desktopName = "Alloy ${lib.versions.major version}";
|
2018-09-26 17:46:58 +01:00
|
|
|
genericName = "Relational modelling tool";
|
|
|
|
comment = meta.description;
|
|
|
|
categories = "Development;IDE;Education;";
|
|
|
|
};
|
2015-05-09 00:23:30 +01:00
|
|
|
|
2018-09-26 17:46:58 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2015-05-09 02:17:33 +01:00
|
|
|
|
2018-09-26 17:46:58 +01:00
|
|
|
buildCommand = ''
|
2021-11-10 04:24:19 +00:00
|
|
|
jar=$out/share/alloy/${pname}.jar
|
2018-09-26 17:46:58 +01:00
|
|
|
install -Dm644 ${src} $jar
|
2015-05-09 02:17:33 +01:00
|
|
|
|
2018-09-26 17:46:58 +01:00
|
|
|
mkdir -p $out/bin
|
2021-11-10 04:24:19 +00:00
|
|
|
makeWrapper ${jre}/bin/java $out/bin/${pname} --add-flags \
|
|
|
|
"-jar $jar"
|
2015-05-09 02:17:33 +01:00
|
|
|
|
2021-11-10 04:24:19 +00:00
|
|
|
install -Dm644 ${./icon.png} $out/share/pixmaps/${pname}.png
|
2018-09-26 17:46:58 +01:00
|
|
|
cp -r ${desktopItem}/share/applications $out/share
|
|
|
|
'';
|
2015-05-09 02:17:33 +01:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2018-09-26 17:46:58 +01:00
|
|
|
description = "Language & tool for relational models";
|
|
|
|
longDescription = ''
|
|
|
|
Alloy is a language for describing structures and a tool for exploring
|
|
|
|
them. An Alloy model is a collection of constraints that describes a set
|
|
|
|
of structures, e.g. all the possible security configurations of a web
|
|
|
|
application, or all the possible topologies of a switching network. The
|
|
|
|
Alloy Analyzer is a solver that takes the constraints of a model and
|
|
|
|
finds structures that satisfy them. Structures are displayed graphically,
|
|
|
|
and their appearance can be customized for the domain at hand.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://alloytools.org/";
|
|
|
|
downloadPage = "http://alloytools.org/download.html";
|
2018-09-26 17:46:58 +01:00
|
|
|
license = licenses.mit;
|
2020-08-25 01:09:55 +01:00
|
|
|
platforms = platforms.unix;
|
2020-03-19 00:49:25 +00:00
|
|
|
maintainers = with maintainers; [ notbandali ];
|
2018-09-26 17:46:58 +01:00
|
|
|
};
|
|
|
|
};
|
2015-05-09 00:23:30 +01:00
|
|
|
|
2018-09-26 17:46:58 +01:00
|
|
|
in rec {
|
2021-11-10 04:24:19 +00:00
|
|
|
alloy5 = generic rec {
|
|
|
|
version = "5.1.0";
|
|
|
|
sha256 = "02k9khs4k5nc86x9pp5k3vcb0kiwdgcin46mlap4fycnr673xd53";
|
2018-09-26 17:46:58 +01:00
|
|
|
};
|
2016-01-24 19:31:44 +00:00
|
|
|
|
2021-11-10 04:24:19 +00:00
|
|
|
alloy6 = generic rec {
|
|
|
|
version = "6.0.0";
|
|
|
|
sha256 = "sha256-rA7mNxcu0DWkykMyfV4JwFmQqg0HOIcwjjD4jCRxNww=";
|
2016-01-24 19:31:44 +00:00
|
|
|
};
|
2018-09-26 17:46:58 +01:00
|
|
|
|
2019-11-23 03:03:23 +00:00
|
|
|
alloy = alloy5;
|
2015-05-09 00:23:30 +01:00
|
|
|
}
|