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