mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
clp: restrict to x86_64-linux + darwin
This commit is contained in:
parent
e879991e1b
commit
19dfffff3c
1 changed files with 4 additions and 4 deletions
|
@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
license = stdenv.lib.licenses.epl10;
|
||||
meta = with stdenv.lib; {
|
||||
license = licenses.epl10;
|
||||
homepage = https://projects.coin-or.org/Clp;
|
||||
description = "An open-source linear programming solver written in C++";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
platforms = platforms.darwin ++ [ "x86_64-linux" ];
|
||||
maintainers = [ maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue