mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add libkate
svn path=/nixpkgs/trunk/; revision=25869
This commit is contained in:
parent
e67fdbf901
commit
822ddb6b5e
2 changed files with 25 additions and 0 deletions
23
pkgs/development/libraries/libkate/default.nix
Normal file
23
pkgs/development/libraries/libkate/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -3559,6 +3559,8 @@ let
|
|||
libtool = libtool_1_5;
|
||||
};
|
||||
|
||||
libkate = callPackage ../development/libraries/libkate { };
|
||||
|
||||
libksba = callPackage ../development/libraries/libksba { };
|
||||
|
||||
libmad = callPackage ../development/libraries/libmad { };
|
||||
|
|
Loading…
Reference in a new issue