1{ stdenv, fetchurl, pkgconfig, autoreconfHook, fuse }:
2
3stdenv.mkDerivation {
4 name = "afuse-0.4.1";
5
6 src = fetchurl {
7 url = https://github.com/pcarrier/afuse/archive/v0.4.1.tar.gz;
8 sha256 = "1sfhicmxppkvdd4z9klfn63snb71gr9hff6xij1gzk94xg6m0ycc";
9 };
10
11 nativeBuildInputs = [ autoreconfHook pkgconfig ];
12 buildInputs = [ fuse ];
13
14 meta = {
15 description = "Automounter in userspace";
16 homepage = https://github.com/pcarrier/afuse;
17 license = stdenv.lib.licenses.gpl2;
18 maintainers = [ stdenv.lib.maintainers.marcweber ];
19 platforms = stdenv.lib.platforms.linux;
20 };
21}