21 stdenv.mkDerivation rec {
26 url = "https://github.com/acaudwell/Gource/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
27 hash = "sha256-yCOSEtKLB1CNnkd2GZdoAmgWKPwl6z4E9mcRdwE8AUI=";
31 # remove bundled library
35 nativeBuildInputs = [ pkg-config ];
53 "--with-boost-libdir=${boost.out}/lib"
57 enableParallelBuilding = true;
60 homepage = "https://gource.io/";
61 description = "Software version control visualization tool";
62 license = licenses.gpl3Plus;
64 Software projects are displayed by Gource as an animated tree with
65 the root directory of the project at its centre. Directories
66 appear as branches with files as leaves. Developers can be seen
67 working on the tree at the times they contributed to the project.
69 Currently Gource includes built-in log generation support for Git,
70 Mercurial and Bazaar and SVN. Gource can also parse logs produced
71 by several third party tools for CVS repositories.
73 platforms = platforms.unix;
74 maintainers = with maintainers; [ pSub ];
75 mainProgram = "gource";