2015-01-11 13:21:37 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, fuse }:
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2009-12-21 00:55:27 -08:00
|
|
|
stdenv.mkDerivation {
|
2015-01-10 15:44:31 -08:00
|
|
|
name = "afuse-0.4.1";
|
2009-12-21 00:55:27 -08:00
|
|
|
|
2015-01-11 13:21:37 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/pcarrier/afuse/archive/v0.4.1.tar.gz;
|
|
|
|
sha256 = "1sfhicmxppkvdd4z9klfn63snb71gr9hff6xij1gzk94xg6m0ycc";
|
2009-12-21 00:55:27 -08:00
|
|
|
};
|
|
|
|
|
2015-01-10 15:44:31 -08:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig fuse ];
|
2009-12-21 00:55:27 -08:00
|
|
|
|
2015-01-10 15:44:31 -08:00
|
|
|
meta = {
|
2010-07-28 04:55:54 -07:00
|
|
|
description = "Automounter in userspace";
|
2015-01-10 15:44:31 -08:00
|
|
|
homepage = https://github.com/pcarrier/afuse;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2010-07-28 04:55:54 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-12-21 00:55:27 -08:00
|
|
|
};
|
|
|
|
}
|