python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / lemon-graph / default.nix
blob04f0514781bfcc985152bad576ea83a70b6d1338
1 { lib
2 , stdenv
3 , fetchurl
4 , cmake
5 }:
7 stdenv.mkDerivation rec {
8   pname = "lemon-graph";
9   version = "1.3.1";
11   src = fetchurl {
12     url = "https://lemon.cs.elte.hu/pub/sources/lemon-${version}.tar.gz";
13     sha256 = "1j6kp9axhgna47cfnmk1m7vnqn01hwh7pf1fp76aid60yhjwgdvi";
14   };
16   nativeBuildInputs = [ cmake ];
18   doCheck = true;
20   meta = with lib; {
21     homepage = "https://lemon.cs.elte.hu/trac/lemon";
22     description = "Efficient library for combinatorial optimization tasks on graphs and networks";
23     license = licenses.boost;
24     maintainers = with maintainers; [ trepetti ];
25     platforms = platforms.all;
26     broken = stdenv.isAarch64 || stdenv.isDarwin;
27   };