CoinMP: rename to coinmp

authored by Zitrone and committed by Zitrone 895f3506 6f35d8d7

+9 -10
+2 -2
pkgs/applications/office/libreoffice/default.nix
··· 47 , libGLU 48 , libGL 49 , bsh 50 - , CoinMP 51 , libwps 52 , libabw 53 , libargon2 ··· 288 # See: https://www.mail-archive.com/libreoffice@lists.freedesktop.org/msg334080.html 289 (libpng.override { apngSupport = false; }) 290 perlPackages.ArchiveZip 291 - CoinMP 292 perlPackages.IOCompress 293 abseil-cpp 294 ant
··· 47 , libGLU 48 , libGL 49 , bsh 50 + , coinmp 51 , libwps 52 , libabw 53 , libargon2 ··· 288 # See: https://www.mail-archive.com/libreoffice@lists.freedesktop.org/msg334080.html 289 (libpng.override { apngSupport = false; }) 290 perlPackages.ArchiveZip 291 + coinmp 292 perlPackages.IOCompress 293 abseil-cpp 294 ant
+2 -2
pkgs/by-name/sy/symphony/package.nix
··· 3 , fetchFromGitHub 4 , cmake 5 , coin-utils 6 - , CoinMP 7 , gfortran 8 , libtool 9 , glpk ··· 24 sha256 = "sha256-OdTUMG3iVhjhw5uKtUnsLCZ4DfMjYHm8+/ozfmw7J6c="; 25 }; 26 27 - nativeBuildInputs = [ libtool pkg-config glpk gfortran CoinMP osi coin-utils ]; 28 29 meta = { 30 description = "SYMPHONY is an open-source solver, callable library, and development framework for mixed-integer linear programs (MILPs) written in C with a number of unique features";
··· 3 , fetchFromGitHub 4 , cmake 5 , coin-utils 6 + , coinmp 7 , gfortran 8 , libtool 9 , glpk ··· 24 sha256 = "sha256-OdTUMG3iVhjhw5uKtUnsLCZ4DfMjYHm8+/ozfmw7J6c="; 25 }; 26 27 + nativeBuildInputs = [ libtool pkg-config glpk gfortran coinmp osi coin-utils ]; 28 29 meta = { 30 description = "SYMPHONY is an open-source solver, callable library, and development framework for mixed-integer linear programs (MILPs) written in C with a number of unique features";
pkgs/development/libraries/CoinMP/0001-change-more-reinterpret_cast-from-NULL-to-C-cast-see.patch pkgs/by-name/co/coinmp/0001-change-more-reinterpret_cast-from-NULL-to-C-cast-see.patch
pkgs/development/libraries/CoinMP/0001-use-static_cast-for-static-cast-fixes-319.patch pkgs/by-name/co/coinmp/0001-use-static_cast-for-static-cast-fixes-319.patch
pkgs/development/libraries/CoinMP/0002-change-reinterpret_cast-of-NULL-to-C-style-case-fixe.patch pkgs/by-name/co/coinmp/0002-change-reinterpret_cast-of-NULL-to-C-style-case-fixe.patch
+4 -4
pkgs/development/libraries/CoinMP/default.nix pkgs/by-name/co/coinmp/package.nix
··· 1 { lib, stdenv, fetchurl, fetchpatch }: 2 3 - stdenv.mkDerivation rec { 4 - pname = "CoinMP"; 5 version = "1.8.4"; 6 7 src = fetchurl { 8 - url = "https://www.coin-or.org/download/source/CoinMP/${pname}-${version}.tgz"; 9 sha256 = "13d3j1sdcjzpijp4qks3n0zibk649ac3hhv88hkk8ffxrc6gnn9l"; 10 }; 11 ··· 39 platforms = platforms.unix; 40 license = licenses.epl10; 41 }; 42 - }
··· 1 { lib, stdenv, fetchurl, fetchpatch }: 2 3 + stdenv.mkDerivation (finalAttrs: { 4 + pname = "coinmp"; 5 version = "1.8.4"; 6 7 src = fetchurl { 8 + url = "https://www.coin-or.org/download/source/CoinMP/CoinMP-${finalAttrs.version}.tgz"; 9 sha256 = "13d3j1sdcjzpijp4qks3n0zibk649ac3hhv88hkk8ffxrc6gnn9l"; 10 }; 11 ··· 39 platforms = platforms.unix; 40 license = licenses.epl10; 41 }; 42 + })
+1
pkgs/top-level/aliases.nix
··· 186 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 187 clpm = throw "'clpm' has been removed from nixpkgs"; # Added 2024-04-01 188 clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 189 collada-dom = opencollada; # added 2024-02-21 190 composable_kernel = throw "'composable_kernel' has been replaced with 'rocmPackages.composable_kernel'"; # Added 2023-10-08 191 cope = throw "'cope' has been removed, as it is broken in nixpkgs since it was added, and fixing it is not trivial"; # Added 2024-04-12
··· 186 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 187 clpm = throw "'clpm' has been removed from nixpkgs"; # Added 2024-04-01 188 clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 189 + CoinMP = coinmp; # Added 2024-06-12 190 collada-dom = opencollada; # added 2024-02-21 191 composable_kernel = throw "'composable_kernel' has been replaced with 'rocmPackages.composable_kernel'"; # Added 2023-10-08 192 cope = throw "'cope' has been removed, as it is broken in nixpkgs since it was added, and fixing it is not trivial"; # Added 2024-04-12
-2
pkgs/top-level/all-packages.nix
··· 20333 20334 soxt = callPackage ../development/libraries/soxt { }; 20335 20336 - CoinMP = callPackage ../development/libraries/CoinMP { }; 20337 - 20338 coinlive = callPackage ../tools/misc/coinlive { 20339 inherit (darwin.apple_sdk.frameworks) Security; 20340 };
··· 20333 20334 soxt = callPackage ../development/libraries/soxt { }; 20335 20336 coinlive = callPackage ../tools/misc/coinlive { 20337 inherit (darwin.apple_sdk.frameworks) Security; 20338 };