mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
36 lines
993 B
Nix
36 lines
993 B
Nix
{ stdenv, fetchFromGitHub, cmake, flex, bison }:
|
|
let
|
|
version = "2.0.14";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "minizinc-${version}";
|
|
|
|
buildInputs = [ cmake flex bison ];
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "${version}";
|
|
owner = "MiniZinc";
|
|
repo = "libminizinc";
|
|
sha256 = "02wy91nv79lrvvhhimcxp7sqz5wd457n1n68zl7qcsm5vfn1hm4q";
|
|
};
|
|
|
|
# meta is all the information about the package..
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.minizinc.org/;
|
|
description = "MiniZinc is 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.sheenobu ];
|
|
};
|
|
}
|
|
|