tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
simple-mtpfs: init at 0.4.0
laalsaas
3 years ago
7c193be7
11c775b8
+33
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
simple-mtpfs
default.nix
top-level
all-packages.nix
+31
pkgs/tools/filesystems/simple-mtpfs/default.nix
···
1
1
+
{ stdenv
2
2
+
, lib
3
3
+
, fetchFromGitHub
4
4
+
, autoreconfHook
5
5
+
, autoconf-archive
6
6
+
, pkg-config
7
7
+
, fuse
8
8
+
, libmtp
9
9
+
}:
10
10
+
stdenv.mkDerivation rec {
11
11
+
pname = "simple-mtpfs";
12
12
+
version = "0.4.0";
13
13
+
14
14
+
src = fetchFromGitHub {
15
15
+
owner = "phatina";
16
16
+
repo = pname;
17
17
+
rev = "v${version}";
18
18
+
hash = "sha256-vAqi2owa4LJK7y7S7TwkPAqDxzyHrZZBTu0MBwMT0gI=";
19
19
+
};
20
20
+
21
21
+
nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
22
22
+
buildInputs = [ fuse libmtp ];
23
23
+
24
24
+
meta = with lib; {
25
25
+
description = "Simple MTP fuse filesystem driver";
26
26
+
homepage = "https://github.com/phatina/simple-mtpfs";
27
27
+
license = licenses.gpl2Plus;
28
28
+
platforms = platforms.linux;
29
29
+
maintainers = with maintainers; [ laalsaas ];
30
30
+
};
31
31
+
}
+2
pkgs/top-level/all-packages.nix
···
11868
11868
11869
11869
silver-searcher = callPackage ../tools/text/silver-searcher { };
11870
11870
11871
11871
+
simple-mtpfs = callPackage ../tools/filesystems/simple-mtpfs { };
11872
11872
+
11871
11873
simpleproxy = callPackage ../tools/networking/simpleproxy { };
11872
11874
11873
11875
simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { };