Adding gtkpod, and fixing libgpod meta info.

svn path=/nixpkgs/trunk/; revision=15016
This commit is contained in:
Lluís Batlle i Rossell 2009-04-13 15:41:10 +00:00
parent a899bfc687
commit 8e09a9bb3d
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl, pkgconfig, libgpod, gtk, glib, gettext, perl, perlXMLParser, libglade, flex, libid3tag }:
stdenv.mkDerivation {
name = "gtkpod-0.99.14";
src = fetchurl {
url = mirror://sourceforge/gtkpod/gtkpod-0.99.14.tar.gz;
sha256 = "0ggcfyhcdlf3br88csdki215k4clxixa192afz6f16k7h8s2iqbk";
};
buildInputs = [ pkgconfig libgpod gettext perl perlXMLParser gtk libglade flex libid3tag];
meta = {
description = "GTK Manager for an Apple ipod";
homepage = http://gtkpod.sourceforge.net;
license = "GPLv2+";
};
}

View File

@ -8,4 +8,10 @@ stdenv.mkDerivation {
};
buildInputs = [ gettext perl perlXMLParser pkgconfig glib libxml2 ];
meta = {
homepage = http://gtkpod.sourceforge.net/;
description = "Library used by gtkpod to access the contents of an ipod";
license = "LGPL";
};
}

View File

@ -8379,6 +8379,12 @@ let
libjpeg readline libtool;
};
gtkpod = import ../applications/audio/gtkpod {
inherit stdenv fetchurl pkgconfig libgpod gettext perl perlXMLParser flex libid3tag;
inherit (gtkLibs) gtk glib;
inherit (gnome) libglade;
};
qrdecode = builderDefsPackage (import ../tools/graphics/qrdecode) {
inherit libpng libcv;
};