ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
25 lines
781 B
Nix
25 lines
781 B
Nix
{ stdenv, fetchurl, libusb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmtp-1.0.1";
|
|
|
|
propagatedBuildInputs = [ libusb ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libmtp/${name}.tar.gz";
|
|
sha256 = "19iha1yi07cdqzlba4ng1mn7h701binalwwkb71q0ld9b88mad6s";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|