lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add libtiger

svn path=/nixpkgs/trunk/; revision=25871

+20
+18
pkgs/development/libraries/libtiger/default.nix
··· 1 + { stdenv, fetchurl, libkate, pango, cairo, pkgconfig }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "libtiger-0.3.4"; 5 + 6 + src = fetchurl { 7 + url = "http://libtiger.googlecode.com/files/${name}.tar.gz"; 8 + sha256 = "0rj1bmr9kngrgbxrjbn4f4f9pww0wmf6viflinq7ava7zdav4hkk"; 9 + }; 10 + 11 + buildInputs = [ libkate pango cairo pkgconfig ]; 12 + 13 + meta = { 14 + homepage = http://code.google.com/p/libtiger/; 15 + authors = [ "Vincent Penquerc'h" ]; 16 + description = "A rendering library for Kate streams using Pango and Cairo"; 17 + }; 18 + }
+2
pkgs/top-level/all-packages.nix
··· 3659 3659 3660 3660 libtiff = callPackage ../development/libraries/libtiff { }; 3661 3661 3662 + libtiger = callPackage ../development/libraries/libtiger { }; 3663 + 3662 3664 libtommath = callPackage ../development/libraries/libtommath { }; 3663 3665 3664 3666 libtorrentRasterbar = callPackage ../development/libraries/libtorrent-rasterbar { };