2018-04-24 21:08:12 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libusb1, libiconv }:
|
2010-09-26 20:39:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-10-29 17:28:51 +00:00
|
|
|
name = "libmtp-1.1.16";
|
2010-09-26 20:39:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
|
2018-10-29 17:28:51 +00:00
|
|
|
sha256 = "185vh9bds6dcy00ycggg69g4v7m3api40zv8vrcfb3fk3vfzjs2v";
|
2010-09-26 20:39:28 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2015-10-17 22:24:10 +01:00
|
|
|
|
2018-04-24 21:08:12 +01:00
|
|
|
buildInputs = [ libiconv ];
|
2015-10-17 22:24:10 +01:00
|
|
|
propagatedBuildInputs = [ libusb1 ];
|
2017-09-05 22:25:26 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-10-17 22:24:10 +01:00
|
|
|
|
|
|
|
# tried to install files to /lib/udev, hopefully OK
|
|
|
|
configureFlags = [ "--with-udev=$$bin/lib/udev" ];
|
|
|
|
|
2018-10-18 20:06:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-26 20:39:28 +01:00
|
|
|
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.
|
|
|
|
'';
|
2018-10-18 20:06:37 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.lgpl21;
|
2010-09-26 20:39:28 +01:00
|
|
|
};
|
|
|
|
}
|