gource: added meta information and moved the package into version-management category
svn path=/nixpkgs/trunk/; revision=31570
This commit is contained in:
parent
97e815a9af
commit
3c8a798411
35
pkgs/applications/version-management/gource/default.nix
Normal file
35
pkgs/applications/version-management/gource/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa}:
|
||||
|
||||
let
|
||||
name = "gource-0.37";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://gource.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "03kd9nn65cl1p2jgn6pvpxmvnfscz3c8jqds90fsc0z37ij2iiyn";
|
||||
};
|
||||
|
||||
buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa];
|
||||
|
||||
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.gnu;
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
{stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gource-0.37";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://gource.googlecode.com/files/gource-0.37.tar.gz;
|
||||
sha256 = "03kd9nn65cl1p2jgn6pvpxmvnfscz3c8jqds90fsc0z37ij2iiyn";
|
||||
};
|
||||
|
||||
buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa];
|
||||
|
||||
}
|
@ -760,7 +760,7 @@ let
|
||||
|
||||
gnuvd = callPackage ../tools/misc/gnuvd { };
|
||||
|
||||
gource = callPackage ../tools/misc/gource { };
|
||||
gource = callPackage ../applications/version-management/gource {};
|
||||
|
||||
gptfdisk = callPackage ../tools/system/gptfdisk { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user