biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / gams / default.nix
blobbe71618aae204f2dc322ceec9cc1961dd628009d
1 { lib, stdenv, fetchurl, unzip, file, licenseFile ? null, optgamsFile ? null}:
3 assert licenseFile != null;
5 stdenv.mkDerivation rec {
6   version = "25.0.2";
7   pname = "gams";
8   src = fetchurl {
9     url = "https://d37drm4t2jghv5.cloudfront.net/distributions/${version}/linux/linux_x64_64_sfx.exe";
10     sha256 = "4f95389579f33ff7c2586838a2c19021aa0746279555cbb51aa6e0efd09bd297";
11   };
12   unpackCmd = "unzip $src";
13   nativeBuildInputs = [ unzip ];
14   buildInputs = [ file ];
15   dontBuild = true;
17   installPhase = ''
18     mkdir -p "$out/bin" "$out/share/gams"
19     cp -a * "$out/share/gams"
21     cp ${licenseFile} $out/share/gams/gamslice.txt
22   '' + lib.optionalString (optgamsFile != null) ''
23     cp ${optgamsFile} $out/share/gams/optgams.def
24     ln -s $out/share/gams/optgams.def $out/bin/optgams.def
25   '';
27   postFixup = ''
28     for f in $out/share/gams/*; do
29       if [[ -x $f ]] && [[ -f $f ]] && [[ ! $f =~ .*\.so$ ]]; then
30         if patchelf \
31           --set-rpath "$out/share/gams" \
32           --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $f; then
33           ln -s $f $out/bin/$(basename $f)
34         fi
35       fi
36     done
37   '';
39   meta = with lib;{
40     description = "General Algebraic Modeling System";
41     longDescription = ''
42       The General Algebraic Modeling System is a high-level modeling system for mathematical optimization.
43       GAMS is designed for modeling and solving linear, nonlinear, and mixed-integer optimization problems.
44     '';
45     homepage = "https://www.gams.com/";
46     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
47     license = licenses.unfree;
48     maintainers = [ maintainers.Scriptkiddi ];
49     platforms = platforms.linux;
50   };