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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv
, autoconf
, automake
, fetchFromGitHub
, gettext
, lib
, libiconv
, libtool
, libusb1
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "libmtp";
2021-11-02 22:03:20 +00:00
version = "1.1.19";
src = fetchFromGitHub {
owner = "libmtp";
repo = "libmtp";
rev = "libmtp-${builtins.replaceStrings [ "." ] [ "-" ] version}";
2021-11-02 22:03:20 +00:00
sha256 = "sha256-o8JKoKVNpU/nHTDnKJpa8FlXt37fZnTf45WBTCxLyTs=";
};
outputs = [ "bin" "dev" "out" ];
2015-10-17 21:24:10 +00:00
nativeBuildInputs = [
autoconf
automake
gettext
libtool
pkg-config
];
buildInputs = [ libiconv ];
propagatedBuildInputs = [ libusb1 ];
preConfigure = "./autogen.sh";
configureFlags = [ "--with-udev=${placeholder "out"}/lib/udev" ];
2015-10-17 21:24:10 +00:00
enableParallelBuilding = true;
2015-10-17 21:24:10 +00:00
meta = with lib; {
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.
'';
2018-10-18 19:06:37 +00:00
platforms = platforms.unix;
license = licenses.lgpl21;
maintainers = with maintainers; [ lovesegfault ];
};
}