forked from mirrors/nixpkgs
Add libtiger
svn path=/nixpkgs/trunk/; revision=25871
This commit is contained in:
parent
7e4e25bbd2
commit
857121483f
18
pkgs/development/libraries/libtiger/default.nix
Normal file
18
pkgs/development/libraries/libtiger/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{ stdenv, fetchurl, libkate, pango, cairo, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libtiger-0.3.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://libtiger.googlecode.com/files/${name}.tar.gz";
|
||||||
|
sha256 = "0rj1bmr9kngrgbxrjbn4f4f9pww0wmf6viflinq7ava7zdav4hkk";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libkate pango cairo pkgconfig ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://code.google.com/p/libtiger/;
|
||||||
|
authors = [ "Vincent Penquerc'h" ];
|
||||||
|
description = "A rendering library for Kate streams using Pango and Cairo";
|
||||||
|
};
|
||||||
|
}
|
|
@ -3659,6 +3659,8 @@ let
|
||||||
|
|
||||||
libtiff = callPackage ../development/libraries/libtiff { };
|
libtiff = callPackage ../development/libraries/libtiff { };
|
||||||
|
|
||||||
|
libtiger = callPackage ../development/libraries/libtiger { };
|
||||||
|
|
||||||
libtommath = callPackage ../development/libraries/libtommath { };
|
libtommath = callPackage ../development/libraries/libtommath { };
|
||||||
|
|
||||||
libtorrentRasterbar = callPackage ../development/libraries/libtorrent-rasterbar { };
|
libtorrentRasterbar = callPackage ../development/libraries/libtorrent-rasterbar { };
|
||||||
|
|
Loading…
Reference in a new issue