about summary refs log tree commit diff
path: root/pkgs/by-name/ga
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-06-05 04:28:59 +0200
committerGitHub <noreply@github.com>2024-06-05 04:28:59 +0200
commitb32c33dad9cb29db9c273d2e33de6caa40fc1571 (patch)
treee76648382284fe6be55e5540241abc10837441a4 /pkgs/by-name/ga
parent462dd577bc326dfef1a68ff31ef56ba64e194906 (diff)
parentc49cfc7bee7d547daabcea8d911b2249bf58d83f (diff)
Merge pull request #282756 from t4ccer/t4/gambit-project
gambit-project: init at 16.1.1
Diffstat (limited to 'pkgs/by-name/ga')
-rw-r--r--pkgs/by-name/ga/gambit-project/package.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/by-name/ga/gambit-project/package.nix b/pkgs/by-name/ga/gambit-project/package.nix
new file mode 100644
index 0000000000000..8d34ac8dfe8a9
--- /dev/null
+++ b/pkgs/by-name/ga/gambit-project/package.nix
@@ -0,0 +1,42 @@
+{ lib
+, autoreconfHook
+, fetchFromGitHub
+, stdenv
+, wxGTK31
+, darwin
+, withGui ? true
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "gambit-project";
+  version = "16.1.1";
+
+  src = fetchFromGitHub {
+    owner = "gambitproject";
+    repo = "gambit";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-ElPzJDQ1q+i1OyliychSUA9pT6yGSwjn/sKV0JX5wrQ=";
+  };
+
+  nativeBuildInputs =
+    [ autoreconfHook ]
+    ++ lib.optional withGui wxGTK31;
+
+  buildInputs =
+    lib.optional withGui wxGTK31
+    ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
+
+  strictDeps = true;
+
+  configureFlags = [
+    (lib.enableFeature withGui "gui")
+  ];
+
+  meta = {
+    description = "An open-source collection of tools for doing computation in game theory";
+    homepage = "http://www.gambit-project.org";
+    license = lib.licenses.gpl2Only;
+    maintainers = with lib.maintainers; [ t4ccer ];
+    platforms = with lib.platforms; unix ++ windows;
+  };
+})