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

29 lines
933 B
Nix
Raw Normal View History

2013-02-12 22:26:58 +00:00
{ stdenv, fetchurl, pkgconfig, libusb1 }:
stdenv.mkDerivation rec {
2015-08-19 12:28:35 +00:00
name = "libmtp-1.1.9";
2013-02-12 22:26:58 +00:00
propagatedBuildInputs = [ libusb1 ];
buildInputs = [ pkgconfig ];
# tried to install files to /lib/udev, hopefully OK
configureFlags = [ "--with-udev=$$out/lib/udev" ];
src = fetchurl {
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
2015-08-19 12:28:35 +00:00
sha256 = "12dinqic0ljnhrwx3rc61jc7q24ybr0mckc2ya5kh1s1np0d7w93";
};
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 ];
};
}