forked from mirrors/nixpkgs
2b74a47006
gource currently fails in the configure phase: configure: error: Could not link against -lGLU ! This is a very misleading error, it seems to happen because configure doesn't find boost libraries and ends up with uninitialized variable(s). That in turn cause it to fail later with this unrelated error. Fix by using boost libraries, not only the headers. gource also grew a dependency on GLM, so add that to buildInputs.
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre
|
|
, SDL_image, glew, mesa, boost, glm
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gource-0.40";
|
|
|
|
src = fetchurl {
|
|
url = "http://gource.googlecode.com/files/${name}.tar.gz";
|
|
sha256 = "04nirh07xjslqsph557as4s50nlf91bi6v2l7vmbifmkdf90m2cw";
|
|
};
|
|
|
|
buildInputs = [
|
|
glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa boost glm
|
|
];
|
|
|
|
configureFlags = "--with-boost-libdir=${boost}/lib";
|
|
|
|
meta = {
|
|
homepage = "http://code.google.com/p/gource/";
|
|
description = "software version control visualization tool";
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
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.
|
|
'';
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|