10 stdenv.mkDerivation (finalAttrs: {
11 pname = "gambit-project";
14 src = fetchFromGitHub {
15 owner = "gambitproject";
17 rev = "v${finalAttrs.version}";
18 hash = "sha256-OuI2DA/5CLgHqcHwOGUE9IdrnyjlGKy8B7tWueUfUtg=";
23 ++ lib.optional withGui wxGTK31;
26 lib.optional withGui wxGTK31
27 ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
32 (lib.enableFeature withGui "gui")
36 description = "Open-source collection of tools for doing computation in game theory";
37 homepage = "http://www.gambit-project.org";
38 license = lib.licenses.gpl2Only;
39 maintainers = with lib.maintainers; [ t4ccer ];
40 platforms = with lib.platforms; unix ++ windows;