mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
gambit-project: init at 16.1.1
This commit is contained in:
parent
3a6191f599
commit
c49cfc7bee
42
pkgs/by-name/ga/gambit-project/package.nix
Normal file
42
pkgs/by-name/ga/gambit-project/package.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user