1 { lib, stdenv, fetchurl, SDL2, ftgl, pkg-config, libpng, libjpeg, pcre2
2 , SDL2_image, freetype, glew, libGLU, libGL, boost, glm, tinyxml
5 stdenv.mkDerivation rec {
10 url = "https://github.com/acaudwell/Gource/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
11 hash = "sha256-yCOSEtKLB1CNnkd2GZdoAmgWKPwl6z4E9mcRdwE8AUI=";
15 # remove bundled library
19 nativeBuildInputs = [ pkg-config ];
21 glew SDL2 ftgl libpng libjpeg pcre2 SDL2_image libGLU libGL
22 boost glm freetype tinyxml
26 "--with-boost-libdir=${boost.out}/lib"
30 enableParallelBuilding = true;
33 homepage = "https://gource.io/";
34 description = "Software version control visualization tool";
35 license = licenses.gpl3Plus;
37 Software projects are displayed by Gource as an animated tree with
38 the root directory of the project at its centre. Directories
39 appear as branches with files as leaves. Developers can be seen
40 working on the tree at the times they contributed to the project.
42 Currently Gource includes built-in log generation support for Git,
43 Mercurial and Bazaar and SVN. Gource can also parse logs produced
44 by several third party tools for CVS repositories.
46 platforms = platforms.unix;
47 maintainers = with maintainers; [ pSub ];
48 mainProgram = "gource";