1{ stdenv, fetchurl, fuse, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 version = "1.12.6";
5 name = "bindfs-${version}";
6
7 src = fetchurl {
8 url = "http://bindfs.org/downloads/${name}.tar.gz";
9 sha256 = "0s90n1n4rvpcg51ixr5wx8ixml1xnc7w28xlbnms34v19pzghm59";
10 };
11
12 dontStrip = true;
13
14 buildInputs = [ fuse pkgconfig ];
15
16 meta = {
17 description = "A FUSE filesystem for mounting a directory to another location";
18 homepage = http://bindfs.org;
19 license = stdenv.lib.licenses.gpl2;
20 maintainers = with stdenv.lib.maintainers; [ lovek323 ];
21 platforms = stdenv.lib.platforms.unix;
22 };
23}