1{ lib
2, stdenv
3, fetchurl
4, cmake
5}:
6
7stdenv.mkDerivation rec {
8 pname = "lemon-graph";
9 version = "1.3.1";
10
11 src = fetchurl {
12 url = "https://lemon.cs.elte.hu/pub/sources/lemon-${version}.tar.gz";
13 sha256 = "1j6kp9axhgna47cfnmk1m7vnqn01hwh7pf1fp76aid60yhjwgdvi";
14 };
15
16 nativeBuildInputs = [ cmake ];
17
18 # error: no viable conversion from ...
19 doCheck = !stdenv.isDarwin;
20
21 meta = with lib; {
22 homepage = "https://lemon.cs.elte.hu/trac/lemon";
23 description = "Efficient library for combinatorial optimization tasks on graphs and networks";
24 license = licenses.boost;
25 maintainers = with maintainers; [ trepetti ];
26 platforms = platforms.all;
27 };
28}