simple-mtpfs: init at 0.4.0

This commit is contained in:
laalsaas 2023-02-06 14:05:59 +01:00
parent 11c775b852
commit 7c193be7f3
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv
, lib
, fetchFromGitHub
, autoreconfHook
, autoconf-archive
, pkg-config
, fuse
, libmtp
}:
stdenv.mkDerivation rec {
pname = "simple-mtpfs";
version = "0.4.0";
src = fetchFromGitHub {
owner = "phatina";
repo = pname;
rev = "v${version}";
hash = "sha256-vAqi2owa4LJK7y7S7TwkPAqDxzyHrZZBTu0MBwMT0gI=";
};
nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
buildInputs = [ fuse libmtp ];
meta = with lib; {
description = "Simple MTP fuse filesystem driver";
homepage = "https://github.com/phatina/simple-mtpfs";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ laalsaas ];
};
}

View File

@ -11868,6 +11868,8 @@ with pkgs;
silver-searcher = callPackage ../tools/text/silver-searcher { };
simple-mtpfs = callPackage ../tools/filesystems/simple-mtpfs { };
simpleproxy = callPackage ../tools/networking/simpleproxy { };
simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { };