3b3ee13b9d
Updating libgpod Making gtkpod accept 'ogg' files, and made it convert them well to mp3, if 'lame' and oggdec is in path. It should better reference lame and libvorbis store path files. svn path=/nixpkgs/trunk/; revision=17888
23 lines
639 B
Nix
23 lines
639 B
Nix
{ stdenv, fetchurl, pkgconfig, libgpod, gtk, glib, gettext, perl, perlXMLParser, libglade, flex, libid3tag, libvorbis }:
|
|
|
|
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 libvorbis ];
|
|
|
|
patchPhase = ''
|
|
sed -i 's/which/type -P/' scripts/*.sh
|
|
'';
|
|
|
|
meta = {
|
|
description = "GTK Manager for an Apple ipod";
|
|
homepage = http://gtkpod.sourceforge.net;
|
|
license = "GPLv2+";
|
|
};
|
|
}
|