51 lines
1.7 KiB
Nix
51 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, pkg-config, openssl, libbsd, libevent, libuuid, libossp_uuid, libmd, zlib, ncurses, bison
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "got";
|
|
version = "0.75.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz";
|
|
sha256 = "sha256-GlEXB89fZPRZAwvUUHcyKCH3Jj5AOvMSHFodsVKepSQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config bison ];
|
|
|
|
buildInputs = [ openssl libbsd libevent libuuid libmd zlib ncurses ]
|
|
++ lib.optionals stdenv.isDarwin [ libossp_uuid ];
|
|
|
|
preConfigure = lib.optionals stdenv.isDarwin ''
|
|
# The configure script assumes dependencies on Darwin are install via
|
|
# Homebrew or MacPorts and hardcodes assumptions about the paths of
|
|
# dependencies which fails the nixpkgs configurePhase.
|
|
substituteInPlace configure --replace 'xdarwin' 'xhomebrew'
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
test "$($out/bin/got --version)" = '${pname} ${version}'
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A version control system which prioritizes ease of use and simplicity over flexibility";
|
|
longDescription = ''
|
|
Game of Trees (Got) is a version control system which prioritizes
|
|
ease of use and simplicity over flexibility.
|
|
|
|
Got uses Git repositories to store versioned data. Git can be used
|
|
for any functionality which has not yet been implemented in
|
|
Got. It will always remain possible to work with both Got and Git
|
|
on the same repository.
|
|
'';
|
|
homepage = "https://gameoftrees.org";
|
|
license = licenses.isc;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ abbe afh ];
|
|
};
|
|
}
|