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