1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 09:31:01 +00:00
nixpkgs/pkgs/development/libraries/libmtp/default.nix

32 lines
1,004 B
Nix
Raw Normal View History

2018-04-24 21:08:12 +01:00
{ stdenv, fetchurl, pkgconfig, libusb1, libiconv }:
stdenv.mkDerivation rec {
2020-02-08 17:12:02 +00:00
name = "libmtp-1.1.17";
src = fetchurl {
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
2020-02-08 17:12:02 +00:00
sha256 = "1p3r38nvdip40ab1h4scj3mzfjkx6kd14szjqyw9r6wz5pslr8zq";
};
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 ];
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; {
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;
};
}