2017-09-22 22:38:03 +00:00
|
|
|
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre
|
2018-02-24 13:12:44 +00:00
|
|
|
, SDL2_image, freetype, glew, libGLU_combined, boost, glm
|
2014-01-16 09:25:04 +00:00
|
|
|
}:
|
2012-01-15 11:44:02 +00:00
|
|
|
|
2014-01-16 09:25:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-16 15:16:03 +00:00
|
|
|
version = "0.49";
|
2014-08-31 10:44:29 +00:00
|
|
|
name = "gource-${version}";
|
2012-01-15 11:44:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-31 10:44:29 +00:00
|
|
|
url = "https://github.com/acaudwell/Gource/releases/download/${name}/${name}.tar.gz";
|
2018-06-16 15:16:03 +00:00
|
|
|
sha256 = "12hf5ipcsp9dxsqn84n4kr63xaiskrnf5a084wr29qk171lj7pd9";
|
2012-01-15 11:44:02 +00:00
|
|
|
};
|
|
|
|
|
2017-09-14 19:24:37 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-01-16 09:25:04 +00:00
|
|
|
buildInputs = [
|
2018-02-24 13:12:44 +00:00
|
|
|
glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU_combined
|
2016-08-22 04:42:36 +00:00
|
|
|
boost glm freetype
|
2014-01-16 09:25:04 +00:00
|
|
|
];
|
2012-01-15 11:44:02 +00:00
|
|
|
|
2016-04-27 21:41:28 +00:00
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
2014-10-11 08:51:47 +00:00
|
|
|
|
2017-11-27 15:38:42 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-01-05 10:22:04 +00:00
|
|
|
|
2014-11-19 07:42:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-10-26 23:44:19 +00:00
|
|
|
homepage = http://gource.io/;
|
2014-11-19 07:42:52 +00:00
|
|
|
description = "A Software version control visualization tool";
|
|
|
|
license = licenses.gpl3Plus;
|
2012-01-15 11:44:02 +00: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 15:38:42 +00:00
|
|
|
platforms = platforms.unix;
|
2014-11-19 07:42:52 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-01-15 11:44:02 +00:00
|
|
|
};
|
|
|
|
}
|