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

32 lines
913 B
Nix
Raw Normal View History

2021-02-09 00:03:27 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, flex, bison }:
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "minizinc";
2021-07-17 17:56:23 +00:00
version = "2.5.5";
2016-09-06 04:16:42 +00:00
nativeBuildInputs = [ cmake flex bison ];
2016-09-06 04:16:42 +00:00
src = fetchFromGitHub {
owner = "MiniZinc";
repo = "libminizinc";
rev = version;
2021-03-22 12:14:15 +00:00
sha256 = "sha256-9z2E6KqOys9UUXlXWB4eDhg34kS3PhUB1Dd1F6iGYoE=";
2016-09-06 04:16:42 +00:00
};
meta = with lib; {
homepage = "https://www.minizinc.org/";
description = "A medium-level constraint modelling language";
2016-09-06 04:16:42 +00:00
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.unix;
2016-09-06 04:16:42 +00:00
maintainers = [ maintainers.sheenobu ];
};
}