From bbde150183f99aac991f10fcf627cb2f1559d9e5 Mon Sep 17 00:00:00 2001 From: Cillian de Roiste Date: Wed, 13 Apr 2011 08:38:13 +0000 Subject: Adding rockbox-utility, for installing/updating the rockbox firmware on mp3 players svn path=/nixpkgs/trunk/; revision=26817 --- pkgs/tools/misc/rockbox-utility/default.nix | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/tools/misc/rockbox-utility/default.nix (limited to 'pkgs/tools/misc/rockbox-utility') diff --git a/pkgs/tools/misc/rockbox-utility/default.nix b/pkgs/tools/misc/rockbox-utility/default.nix new file mode 100644 index 00000000000..d2fa91d3fe8 --- /dev/null +++ b/pkgs/tools/misc/rockbox-utility/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, libusb, qt4 }: + +stdenv.mkDerivation rec { + name = "rockbox-utility-${version}"; + version = "1.2.8"; + + src = fetchurl { + url = "http://download.rockbox.org/rbutil/source/rbutil_${version}-src.tar.bz2"; + sha256 = "1gjwlyrwvzfdhqdwvq1chdnjkcn9lk21ixp92h5y74826j3ahdgs"; + }; + + buildInputs = [ libusb qt4 ]; + + preBuild = '' + cd rbutil/rbutilqt + qmake + ''; + + installPhase = '' + ensureDir $out/bin + cp RockboxUtility $out/bin + ''; + + meta = with stdenv.lib; { + description = "open source firmware for mp3 players"; + homepage = http://www.rockbox.org; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.goibhniu ]; + }; +} -- cgit 1.4.1