Merge pull request #144290 from lovesegfault/libmtp-1.1.19

libmtp: 1.1.18 -> 1.1.19
This commit is contained in:
Bernardo Meurer
2021-11-02 17:41:44 -07:00
committed by GitHub
+20 -17
View File
@@ -1,17 +1,24 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, gettext, libtool, pkg-config
, libusb1
{ stdenv
, autoconf
, automake
, fetchFromGitHub
, gettext
, lib
, libiconv
, libtool
, libusb1
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "libmtp";
version = "1.1.18";
version = "1.1.19";
src = fetchFromGitHub {
owner = "libmtp";
repo = "libmtp";
rev = "libmtp-${builtins.replaceStrings [ "." ] [ "-" ] version}";
sha256 = "0rya6dsb67a7ny2i1jzdicnday42qb8njqw6r902k712k5p7d1r9";
sha256 = "sha256-o8JKoKVNpU/nHTDnKJpa8FlXt37fZnTf45WBTCxLyTs=";
};
outputs = [ "bin" "dev" "out" ];
@@ -24,30 +31,26 @@ stdenv.mkDerivation rec {
pkg-config
];
buildInputs = [
libiconv
];
buildInputs = [ libiconv ];
propagatedBuildInputs = [
libusb1
];
propagatedBuildInputs = [ libusb1 ];
preConfigure = ''
./autogen.sh
'';
preConfigure = "./autogen.sh";
# tried to install files to /lib/udev, hopefully OK
configureFlags = [ "--with-udev=$$bin/lib/udev" ];
configureFlags = [ "--with-udev=${placeholder "out"}/lib/udev" ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://libmtp.sourceforge.net";
homepage = "https://github.com/libmtp/libmtp";
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 = platforms.unix;
license = licenses.lgpl21;
maintainers = with maintainers; [ lovesegfault ];
};
}