nixpkgs/pkgs/development/libraries/libmtp/default.nix

32 lines
1,004 B
Nix
Raw Normal View History

2018-04-24 20:08:12 +00:00
{ stdenv, fetchurl, pkgconfig, libusb1, libiconv }:
stdenv.mkDerivation rec {
2020-11-02 23:15:35 +00:00
name = "libmtp-1.1.18";
src = fetchurl {
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
2020-11-02 23:15:35 +00:00
sha256 = "1w41l93yi0dmw218daiw36rylkc8rammxx37csh1ij24q18gx03j";
};
outputs = [ "bin" "dev" "out" ];
2015-10-17 21:24:10 +00:00
2018-04-24 20:08:12 +00:00
buildInputs = [ libiconv ];
2015-10-17 21:24:10 +00:00
propagatedBuildInputs = [ libusb1 ];
nativeBuildInputs = [ pkgconfig ];
2015-10-17 21:24:10 +00:00
# tried to install files to /lib/udev, hopefully OK
configureFlags = [ "--with-udev=$$bin/lib/udev" ];
2018-10-18 19:06:37 +00:00
meta = with stdenv.lib; {
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 19:06:37 +00:00
platforms = platforms.unix;
license = licenses.lgpl21;
};
}