nixos/uptime-kuma: Add additional lockdown settings to systemd unit (#361452)
[NixPkgs.git] / pkgs / by-name / gu / gurobi / package.nix
blob4d7afdb860839b750f822ac974e2c9b71b668abb
2   stdenv,
3   lib,
4   fetchurl,
5   autoPatchelfHook,
6   python3,
7 }:
9 let
10   platform =
11     {
12       aarch64-linux = "armlinux64";
13       x86_64-linux = "linux64";
14     }
15     .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
17 stdenv.mkDerivation rec {
18   pname = "gurobi";
19   version = "12.0.0";
21   src = fetchurl {
22     url = "https://packages.gurobi.com/${lib.versions.majorMinor version}/gurobi${version}_${platform}.tar.gz";
23     hash =
24       {
25         aarch64-linux = "sha256-jhICy/CGahb6eMPkvg+jKIjskS+N3zM8KVYdBXlk74Y=";
26         x86_64-linux = "sha256-or3Jwda/jrTlUaGErxzo17BDXqjn0ZoBfMfVP9Xv2hI=";
27       }
28       .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
29   };
31   sourceRoot = "gurobi${builtins.replaceStrings [ "." ] [ "" ] version}/${platform}";
33   nativeBuildInputs = [
34     autoPatchelfHook
35   ];
37   buildInputs = [
38     (python3.withPackages (ps: [
39       ps.gurobipy
40     ]))
41   ];
43   strictDeps = true;
45   makeFlags = [ "--directory=src/build" ];
47   installPhase = ''
48     runHook preInstall
50     mkdir -p $out/bin
51     cp bin/* $out/bin/
52     rm $out/bin/gurobi.sh
53     rm $out/bin/python*
55     cp lib/gurobi.py $out/bin/gurobi.sh
57     mkdir -p $out/include
58     cp include/gurobi*.h $out/include/
60     mkdir -p $out/lib
61     cp lib/*.jar $out/lib/
62     cp lib/libGurobiJni*.so $out/lib/
63     cp lib/libgurobi*.so* $out/lib/
64     cp lib/libgurobi*.a $out/lib/
65     cp src/build/*.a $out/lib/
67     mkdir -p $out/share/java
68     ln -s $out/lib/gurobi.jar $out/share/java/
69     ln -s $out/lib/gurobi-javadoc.jar $out/share/java/
71     runHook postInstall
72   '';
74   passthru.libSuffix = lib.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor version);
76   meta = {
77     description = "Optimization solver for mathematical programming";
78     homepage = "https://www.gurobi.com";
79     sourceProvenance = with lib.sourceTypes; [
80       binaryBytecode
81       binaryNativeCode
82     ];
83     license = lib.licenses.unfree;
84     platforms = [
85       "aarch64-linux"
86       "x86_64-linux"
87     ];
88     maintainers = with lib.maintainers; [ wegank ];
89   };