fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, libusb1, libiconv }:
2
3stdenv.mkDerivation rec {
4 name = "libmtp-1.1.15";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libmtp/${name}.tar.gz";
8 sha256 = "089h79nkz7wcr3lbqi7025l8p75hbp0aigxk3wdk2zkm8q5r0h6h";
9 };
10
11 outputs = [ "bin" "dev" "out" ];
12
13 buildInputs = [ libiconv ];
14 propagatedBuildInputs = [ libusb1 ];
15 nativeBuildInputs = [ pkgconfig ];
16
17 # tried to install files to /lib/udev, hopefully OK
18 configureFlags = [ "--with-udev=$$bin/lib/udev" ];
19
20 meta = {
21 homepage = http://libmtp.sourceforge.net;
22 description = "An implementation of Microsoft's Media Transfer Protocol";
23 longDescription = ''
24 libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP)
25 in the form of a library suitable primarily for POSIX compliant operating
26 systems. We implement MTP Basic, the stuff proposed for standardization.
27 '';
28 platforms = stdenv.lib.platforms.unix;
29 maintainers = [ ];
30 };
31}