nixpkgs/pkgs/development/tools/minizinc/ide.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2021-02-09 00:03:27 +00:00
{ lib, mkDerivation, fetchFromGitHub, qtbase, qtwebengine, qtwebkit, qmake, minizinc }:
2021-07-17 17:56:23 +00:00
mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "minizinc-ide";
2021-07-17 17:56:23 +00:00
version = "2.5.3";
2021-02-09 00:03:27 +00:00
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase qtwebengine qtwebkit ];
src = fetchFromGitHub {
owner = "MiniZinc";
repo = "MiniZincIDE";
rev = version;
2021-02-09 00:03:27 +00:00
sha256 = "1c80ilb1xbgzfadgal668h2zsaiv62il1jnljizrisgb7pszzyzw";
fetchSubmodules = true;
};
sourceRoot = "source/MiniZincIDE";
dontWrapQtApps = true;
postInstall = ''
wrapProgram $out/bin/MiniZincIDE --prefix PATH ":" ${lib.makeBinPath [ minizinc ]}
'';
meta = with lib; {
2020-04-06 06:07:50 +00:00
homepage = "https://www.minizinc.org/";
description = "IDE for MiniZinc, a medium-level constraint modelling language";
longDescription = ''
MiniZinc is a medium-level constraint modelling
language. It is high-level enough to express most
constraint problems easily, but low-level enough
that it can be mapped onto existing solvers easily and consistently.
It is a subset of the higher-level language Zinc.
'';
license = licenses.mpl20;
platforms = platforms.linux;
maintainers = [ maintainers.dtzWill ];
};
}