Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

simple-mtpfs: init at 0.4.0

laalsaas 7c193be7 11c775b8

+33
+31
pkgs/tools/filesystems/simple-mtpfs/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , autoconf-archive 6 + , pkg-config 7 + , fuse 8 + , libmtp 9 + }: 10 + stdenv.mkDerivation rec { 11 + pname = "simple-mtpfs"; 12 + version = "0.4.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "phatina"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + hash = "sha256-vAqi2owa4LJK7y7S7TwkPAqDxzyHrZZBTu0MBwMT0gI="; 19 + }; 20 + 21 + nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ]; 22 + buildInputs = [ fuse libmtp ]; 23 + 24 + meta = with lib; { 25 + description = "Simple MTP fuse filesystem driver"; 26 + homepage = "https://github.com/phatina/simple-mtpfs"; 27 + license = licenses.gpl2Plus; 28 + platforms = platforms.linux; 29 + maintainers = with maintainers; [ laalsaas ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 11868 11868 11869 11869 silver-searcher = callPackage ../tools/text/silver-searcher { }; 11870 11870 11871 + simple-mtpfs = callPackage ../tools/filesystems/simple-mtpfs { }; 11872 + 11871 11873 simpleproxy = callPackage ../tools/networking/simpleproxy { }; 11872 11874 11873 11875 simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { };