2013-02-12 22:26:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libusb1 }:
|
2010-09-26 19:39:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-04 12:38:49 +00:00
|
|
|
name = "libmtp-1.1.11";
|
2010-09-26 19:39:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
|
2016-06-04 12:38:49 +00:00
|
|
|
sha256 = "1sc768q2cixwanlwrz95mp389iaadl4s95486caavxx4g7znvn8m";
|
2010-09-26 19:39:28 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2015-10-17 21:24:10 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ libusb1 ];
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
# tried to install files to /lib/udev, hopefully OK
|
|
|
|
configureFlags = [ "--with-udev=$$bin/lib/udev" ];
|
|
|
|
|
2010-09-26 19:39:28 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://libmtp.sourceforge.net;
|
|
|
|
description = "An implementation of Microsoft's Media Transfer Protocol";
|
|
|
|
longDescription = ''
|
|
|
|
libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP)
|
|
|
|
in the form of a library suitable primarily for POSIX compliant operating
|
|
|
|
systems. We implement MTP Basic, the stuff proposed for standardization.
|
|
|
|
'';
|
2016-09-01 17:39:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ ];
|
2010-09-26 19:39:28 +00:00
|
|
|
};
|
|
|
|
}
|