lol

symphony: 5.7.2 -> 5.7.3

+15 -12
+15 -12
pkgs/by-name/sy/symphony/package.nix
··· 4 4 fetchFromGitHub, 5 5 coin-utils, 6 6 coinmp, 7 + glpk, 8 + osi, 7 9 gfortran, 8 10 libtool, 9 - glpk, 10 - osi, 11 11 pkg-config, 12 12 }: 13 13 14 - stdenv.mkDerivation rec { 14 + stdenv.mkDerivation (finalAttrs: { 15 15 pname = "symphony"; 16 - version = "5.7.2"; 16 + version = "5.7.3"; 17 17 18 18 outputs = [ "out" ]; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "coin-or"; 22 22 repo = "SYMPHONY"; 23 - rev = "releases/${version}"; 24 - hash = "sha256-OdTUMG3iVhjhw5uKtUnsLCZ4DfMjYHm8+/ozfmw7J6c="; 23 + tag = "releases/${finalAttrs.version}"; 24 + hash = "sha256-f97LICRykxhiZiSsSBE9IJBLL/ApWV+utvlHuUhx1PI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ 28 + gfortran 28 29 libtool 29 30 pkg-config 31 + ]; 32 + 33 + buildInputs = [ 34 + coin-utils 35 + coinmp 30 36 glpk 31 - gfortran 32 - coinmp 33 37 osi 34 - coin-utils 35 38 ]; 36 39 37 40 meta = { 38 41 description = "Open-source solver, callable library, and development framework for mixed-integer linear programs (MILPs)"; 39 42 homepage = "https://www.coin-or.org/SYMPHONY/index.htm"; 40 - changelog = "https://github.com/coin-or/SYMPHONY/blob/${version}/CHANGELOG.md"; 41 - platforms = [ "x86_64-linux" ]; 43 + changelog = "https://github.com/coin-or/SYMPHONY/blob/${finalAttrs.version}/CHANGELOG.md"; 44 + platforms = lib.platforms.linux; 42 45 license = lib.licenses.epl20; 43 46 maintainers = with lib.maintainers; [ b-rodrigues ]; 44 47 }; 45 - } 48 + })