nixpkgs/pkgs/development/libraries/libmtp/default.nix
Lluís Batlle i Rossell 268fedbda3 Updating goPackages go-fuse/mtpfs + libmtp to latest
libmtp to 1.1.11, and the go packages to latest master.
2016-06-04 15:38:49 +03:00

31 lines
970 B
Nix

{ stdenv, fetchurl, pkgconfig, libusb1 }:
stdenv.mkDerivation rec {
name = "libmtp-1.1.11";
src = fetchurl {
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
sha256 = "1sc768q2cixwanlwrz95mp389iaadl4s95486caavxx4g7znvn8m";
};
outputs = [ "dev" "bin" "out" ];
propagatedBuildInputs = [ libusb1 ];
buildInputs = [ pkgconfig ];
# tried to install files to /lib/udev, hopefully OK
configureFlags = [ "--with-udev=$$bin/lib/udev" ];
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.
'';
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}