2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre
|
2019-11-10 08:44:34 -08:00
|
|
|
, SDL2_image, freetype, glew, libGLU, libGL, boost, glm
|
2014-01-16 01:25:04 -08:00
|
|
|
}:
|
2012-01-15 03:44:02 -08:00
|
|
|
|
2014-01-16 01:25:04 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-25 18:22:49 -08:00
|
|
|
version = "0.51";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gource";
|
2012-01-15 03:44:02 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://github.com/acaudwell/Gource/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
|
2019-11-25 18:22:49 -08:00
|
|
|
sha256 = "16p7b1x4r0915w883lp374jcdqqja37fnb7m8vnsfnl2n64gi8qr";
|
2012-01-15 03:44:02 -08:00
|
|
|
};
|
|
|
|
|
2017-09-14 12:24:37 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-01-16 01:25:04 -08:00
|
|
|
buildInputs = [
|
2019-11-10 08:44:34 -08:00
|
|
|
glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU libGL
|
2016-08-21 21:42:36 -07:00
|
|
|
boost glm freetype
|
2014-01-16 01:25:04 -08:00
|
|
|
];
|
2012-01-15 03:44:02 -08:00
|
|
|
|
2016-04-27 14:41:28 -07:00
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
2014-10-11 01:51:47 -07:00
|
|
|
|
2017-11-27 07:38:42 -08:00
|
|
|
enableParallelBuilding = true;
|
2014-01-05 02:22:04 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://gource.io/";
|
2014-11-18 23:42:52 -08:00
|
|
|
description = "A Software version control visualization tool";
|
|
|
|
license = licenses.gpl3Plus;
|
2012-01-15 03:44:02 -08:00
|
|
|
longDescription = ''
|
|
|
|
Software projects are displayed by Gource as an animated tree with
|
|
|
|
the root directory of the project at its centre. Directories
|
|
|
|
appear as branches with files as leaves. Developers can be seen
|
|
|
|
working on the tree at the times they contributed to the project.
|
|
|
|
|
|
|
|
Currently Gource includes built-in log generation support for Git,
|
|
|
|
Mercurial and Bazaar and SVN. Gource can also parse logs produced
|
|
|
|
by several third party tools for CVS repositories.
|
|
|
|
'';
|
2017-11-27 07:38:42 -08:00
|
|
|
platforms = platforms.unix;
|
2014-11-18 23:42:52 -08:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-01-15 03:44:02 -08:00
|
|
|
};
|
|
|
|
}
|