forked from mirrors/nixpkgs
simple-mtpfs: init at 0.4.0
This commit is contained in:
parent
11c775b852
commit
7c193be7f3
31
pkgs/tools/filesystems/simple-mtpfs/default.nix
Normal file
31
pkgs/tools/filesystems/simple-mtpfs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue