added ftgl, gource
svn path=/nixpkgs/trunk/; revision=24379
This commit is contained in:
parent
5a7fa1d061
commit
202774b93e
3 changed files with 30 additions and 0 deletions
13
pkgs/development/libraries/ftgl/default.nix
Normal file
13
pkgs/development/libraries/ftgl/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{stdenv, fetchurl, freetype, mesa}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ftgl-2.1.3-rc5";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/ftgl/files/FTGL%20Source/2.1.3%7Erc5/ftgl-2.1.3-rc5.tar.gz ;
|
||||
sha256 = "0nsn4s6vnv5xcgxcw6q031amvh2zfj2smy1r5mbnjj2548hxcn2l";
|
||||
};
|
||||
|
||||
buildInputs = [freetype mesa];
|
||||
|
||||
}
|
13
pkgs/tools/misc/gource/default.nix
Normal file
13
pkgs/tools/misc/gource/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gource-0.28";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://gource.googlecode.com/files/gource-0.28.tar.gz;
|
||||
sha256 = "09538vcf9n21qx4cmcjrki6ilayvm4x6s0zdf00mrd1h0bklhxn3";
|
||||
};
|
||||
|
||||
buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa];
|
||||
|
||||
}
|
|
@ -615,6 +615,8 @@ let
|
|||
withX11 = true;
|
||||
};
|
||||
|
||||
ftgl = callPackage ../development/libraries/ftgl { };
|
||||
|
||||
dos2unix = callPackage ../tools/text/dos2unix { };
|
||||
|
||||
unix2dos = callPackage ../tools/text/unix2dos { };
|
||||
|
@ -683,6 +685,8 @@ let
|
|||
|
||||
gnuvd = callPackage ../tools/misc/gnuvd { };
|
||||
|
||||
gource = callPackage ../tools/misc/gource { };
|
||||
|
||||
graphviz = callPackage ../tools/graphics/graphviz {
|
||||
inherit (gtkLibs) pango;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue