Author: urkud
Date: Wed Feb 9 21:10:55 2011
New Revision: 25869
URL: https://svn.nixos.org/websvn/nix/?rev=25869&sc=1
Log:
Add libkate
Added:
nixpkgs/trunk/pkgs/development/libraries/libkate/
nixpkgs/trunk/pkgs/development/libraries/libkate/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/development/libraries/libkate/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/libkate/default.nix Wed Feb
9 21:10:55 2011 (r25869)
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, libogg, libpng }:
+
+stdenv.mkDerivation rec {
+ name = "libkate-0.3.8";
+
+ src = fetchurl {
+ url = "http://libkate.googlecode.com/files/${name}.tar.gz";
+ sha256 = "00d6561g31la9bb8q99b7l4rvi67yiwm50ky8dhlsjd88h7rks2n";
+ };
+
+ buildInputs = [ libogg libpng ];
+
+ meta = {
+ description = "A library for encoding and decoding Kate streams";
+ longDescription = ''
+ This is libkate, the reference implementation of a codec for the Kate
+ bitstream format. Kate is a karaoke and text codec meant for
encapsulation
+ in an Ogg container. It can carry Unicode text, images, and animate
+ them.'';
+ homepage = http://code.google.com/p/libkate;
+ maintainers = [ stdenv.lib.maintainers.urkud ];
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Feb 9 21:10:42
2011 (r25868)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Feb 9 21:10:55
2011 (r25869)
@@ -3559,6 +3559,8 @@
libtool = libtool_1_5;
};
+ libkate = callPackage ../development/libraries/libkate { };
+
libksba = callPackage ../development/libraries/libksba { };
libmad = callPackage ../development/libraries/libmad { };
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits