From 222b91fedfd99af1b0cb765d744b9e3908580581 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 13 Jan 2014 17:22:07 +0100 Subject: gource: update to version 0.40 --- pkgs/applications/version-management/gource/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/applications/version-management/gource') diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix index 886ed9a71999..d20f0fccdaf4 100644 --- a/pkgs/applications/version-management/gource/default.nix +++ b/pkgs/applications/version-management/gource/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa }: let - name = "gource-0.37"; + name = "gource-0.40"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "http://gource.googlecode.com/files/${name}.tar.gz"; - sha256 = "03kd9nn65cl1p2jgn6pvpxmvnfscz3c8jqds90fsc0z37ij2iiyn"; + sha256 = "04nirh07xjslqsph557as4s50nlf91bi6v2l7vmbifmkdf90m2cw"; }; buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa]; @@ -29,7 +29,7 @@ stdenv.mkDerivation { by several third party tools for CVS repositories. ''; - platforms = stdenv.lib.platforms.gnu; + hydraPlatforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.simons ]; }; } -- cgit 1.4.1 From 3988e0ca516c4c443d94b81e7aefbaf9570563e9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 16 Jan 2014 10:25:04 +0100 Subject: gource: mark as broken The configure process finds libGLU just fine, but then aborts saying: configure: error: Could not link against -lGLU ! --- pkgs/applications/version-management/gource/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pkgs/applications/version-management/gource') diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix index d20f0fccdaf4..d4e9af5e12b5 100644 --- a/pkgs/applications/version-management/gource/default.nix +++ b/pkgs/applications/version-management/gource/default.nix @@ -1,17 +1,18 @@ -{ stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa }: +{ stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre +, SDL_image, glew, mesa, boostHeaders +}: -let +stdenv.mkDerivation rec { name = "gource-0.40"; -in -stdenv.mkDerivation { - inherit name; src = fetchurl { url = "http://gource.googlecode.com/files/${name}.tar.gz"; sha256 = "04nirh07xjslqsph557as4s50nlf91bi6v2l7vmbifmkdf90m2cw"; }; - buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa]; + buildInputs = [ + glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa boostHeaders + ]; meta = { homepage = "http://code.google.com/p/gource/"; @@ -29,7 +30,6 @@ stdenv.mkDerivation { by several third party tools for CVS repositories. ''; - hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + broken = true; }; } -- cgit 1.4.1