usbmuxd-1.0.7
svn path=/nixpkgs/trunk/; revision=31321
This commit is contained in:
@@ -1,17 +1,22 @@
|
|||||||
{ stdenv, fetchurl, cmake, libplist, libusb1, pkgconfig }:
|
{ stdenv, fetchurl, cmake, libplist, libusb1, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "usbmuxd-1.0.5";
|
name = "usbmuxd-1.0.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://marcansoft.com/uploads/usbmuxd/${name}.tar.bz2";
|
url = "http://marcansoft.com/uploads/usbmuxd/${name}.tar.bz2";
|
||||||
sha256 = "130h5hk2qhki5xflcindx0prrgm5h7aqhbygrpasvr6030k6bkiv";
|
sha256 = "09swwr6x46qxmwylrylnyqh4pznr0swla9gijggwxxw8dw82r840";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake pkgconfig ];
|
buildNativeInputs = [ cmake pkgconfig ];
|
||||||
propagatedBuildInputs = [ libusb1 libplist ];
|
propagatedBuildInputs = [ libusb1 libplist ];
|
||||||
|
|
||||||
patchPhase = "sed -e 's,/lib/udev,lib/udev,' -i udev/CMakeLists.txt";
|
patchPhase =
|
||||||
|
''
|
||||||
|
sed -e 's,/lib/udev,lib/udev,' -i udev/CMakeLists.txt
|
||||||
|
sed -e 's,/bin/echo,echo,g' -i Modules/describe.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
|
||||||
cmakeFlags = ''-DLIB_SUFFIX='';
|
cmakeFlags = ''-DLIB_SUFFIX='';
|
||||||
meta = {
|
meta = {
|
||||||
@@ -21,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
usbmuxd: USB Multiplex Daemon. This bit of software is in charge of
|
usbmuxd: USB Multiplex Daemon. This bit of software is in charge of
|
||||||
talking to your iPhone or iPod Touch over USB and coordinating access to
|
talking to your iPhone or iPod Touch over USB and coordinating access to
|
||||||
its services by other applications.'';
|
its services by other applications.'';
|
||||||
inherit (libusb1.meta) platforms;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user