mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
78 lines
1.6 KiB
Nix
78 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
SDL2,
|
|
ftgl,
|
|
pkg-config,
|
|
libpng,
|
|
libjpeg,
|
|
pcre2,
|
|
SDL2_image,
|
|
freetype,
|
|
glew,
|
|
libGLU,
|
|
libGL,
|
|
boost,
|
|
glm,
|
|
tinyxml,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gource";
|
|
version = "0.55";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/acaudwell/Gource/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-yCOSEtKLB1CNnkd2GZdoAmgWKPwl6z4E9mcRdwE8AUI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# remove bundled library
|
|
rm -r src/tinyxml
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
glew
|
|
SDL2
|
|
ftgl
|
|
libpng
|
|
libjpeg
|
|
pcre2
|
|
SDL2_image
|
|
libGLU
|
|
libGL
|
|
boost
|
|
glm
|
|
freetype
|
|
tinyxml
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
"--with-tinyxml"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gource.io/";
|
|
description = "Software version control visualization tool";
|
|
license = 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 = platforms.unix;
|
|
maintainers = with maintainers; [ pSub ];
|
|
mainProgram = "gource";
|
|
};
|
|
}
|