summary refs log tree commit diff
path: root/pkgs/applications/version-management/gource
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-11-19 08:42:52 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2014-11-19 08:47:41 +0100
commitfb5dfbdbc74e43c1a9dc0450807918ab86579b9b (patch)
treede47a5a27026aafd6ffdd5bb5b3f03c04912fca9 /pkgs/applications/version-management/gource
parent885a29eefdb1205015e823e2ecdba7c304c5e159 (diff)
downloadnixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar.gz
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar.bz2
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar.lz
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar.xz
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.tar.zst
nixpkgs-fb5dfbdbc74e43c1a9dc0450807918ab86579b9b.zip
gource: update from 0.42 to 0.43 and adopt it
Diffstat (limited to 'pkgs/applications/version-management/gource')
-rw-r--r--pkgs/applications/version-management/gource/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix
index 56095762f04..8d784b3e3d3 100644
--- a/pkgs/applications/version-management/gource/default.nix
+++ b/pkgs/applications/version-management/gource/default.nix
@@ -3,12 +3,12 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "0.42";
+  version = "0.43";
   name = "gource-${version}";
 
   src = fetchurl {
     url = "https://github.com/acaudwell/Gource/releases/download/${name}/${name}.tar.gz";
-    sha256 = "08ab57z44y8b5wxg1193j6hiy50njbpi6dwafjh6nb0apcq8ziz5";
+    sha256 = "1r5x9ai86f609hf584n0xaf5hxkbilj5qihn89v7ghpmwk40m945";
   };
 
   buildInputs = [
@@ -20,10 +20,10 @@ stdenv.mkDerivation rec {
 
   NIX_CFLAGS_COMPILE = "-fpermissive"; # fix build with newer gcc versions
 
-  meta = {
-    homepage = "http://code.google.com/p/gource/";
-    description = "software version control visualization tool";
-    license = stdenv.lib.licenses.gpl3Plus;
+  meta = with stdenv.lib; {
+    homepage = http://code.google.com/p/gource/;
+    description = "A 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
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
       Mercurial and Bazaar and SVN. Gource can also parse logs produced
       by several third party tools for CVS repositories.
     '';
-    platforms = stdenv.lib.platforms.linux;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ pSub ];
   };
 }