mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
commit
0d6d1e8cc0
41
pkgs/applications/version-management/got/default.nix
Normal file
41
pkgs/applications/version-management/got/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib, stdenv, fetchurl, pkg-config, openssl, libuuid, libmd, zlib, ncurses }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "got";
|
||||||
|
version = "0.60";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url =
|
||||||
|
"https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz";
|
||||||
|
sha256 = "sha256-tT8F3Kx7Rcjd/tWjIXXNWygYlkMddWwrttpjnYLnBdo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl libuuid libmd zlib ncurses ];
|
||||||
|
|
||||||
|
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.all;
|
||||||
|
maintainers = with maintainers; [ abbe ];
|
||||||
|
};
|
||||||
|
}
|
@ -24812,6 +24812,8 @@ with pkgs;
|
|||||||
|
|
||||||
goffice = callPackage ../development/libraries/goffice { };
|
goffice = callPackage ../development/libraries/goffice { };
|
||||||
|
|
||||||
|
got = callPackage ../applications/version-management/got { };
|
||||||
|
|
||||||
gtk-pipe-viewer = perlPackages.callPackage ../applications/video/pipe-viewer { withGtk3 = true; };
|
gtk-pipe-viewer = perlPackages.callPackage ../applications/video/pipe-viewer { withGtk3 = true; };
|
||||||
|
|
||||||
hydrus = python3Packages.callPackage ../applications/graphics/hydrus {
|
hydrus = python3Packages.callPackage ../applications/graphics/hydrus {
|
||||||
|
Loading…
Reference in New Issue
Block a user