mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
Merge pull request #204120 from wegank/lemon-graph-unbreak
This commit is contained in:
commit
a8db492934
@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
doCheck = true;
|
||||
# error: no viable conversion from ...
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://lemon.cs.elte.hu/trac/lemon";
|
||||
@ -23,6 +24,5 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.boost;
|
||||
maintainers = with maintainers; [ trepetti ];
|
||||
platforms = platforms.all;
|
||||
broken = stdenv.isAarch64 || stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
@ -19990,7 +19990,9 @@ with pkgs;
|
||||
|
||||
lmdbxx = callPackage ../development/libraries/lmdbxx { };
|
||||
|
||||
lemon-graph = callPackage ../development/libraries/lemon-graph { };
|
||||
lemon-graph = callPackage ../development/libraries/lemon-graph {
|
||||
stdenv = if stdenv.isLinux then gcc11Stdenv else stdenv;
|
||||
};
|
||||
|
||||
levmar = callPackage ../development/libraries/levmar { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user