mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Adding rockbox-utility, for installing/updating the rockbox firmware on mp3 players
svn path=/nixpkgs/trunk/; revision=26817
This commit is contained in:
parent
2eb6b07427
commit
bbde150183
31
pkgs/tools/misc/rockbox-utility/default.nix
Normal file
31
pkgs/tools/misc/rockbox-utility/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1206,6 +1206,8 @@ let
|
|||||||
|
|
||||||
rlwrap = callPackage ../tools/misc/rlwrap { };
|
rlwrap = callPackage ../tools/misc/rlwrap { };
|
||||||
|
|
||||||
|
rockbox_utility = callPackage ../tools/misc/rockbox-utility { };
|
||||||
|
|
||||||
rpPPPoE = builderDefsPackage (import ../tools/networking/rp-pppoe) {
|
rpPPPoE = builderDefsPackage (import ../tools/networking/rp-pppoe) {
|
||||||
inherit ppp;
|
inherit ppp;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user