2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, 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 {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://github.com/pcarrier/afuse/archive/v0.4.1.tar.gz";
|
2015-01-11 13:21:37 -08:00
|
|
|
sha256 = "1sfhicmxppkvdd4z9klfn63snb71gr9hff6xij1gzk94xg6m0ycc";
|
2009-12-21 00:55:27 -08:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ 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";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pcarrier/afuse";
|
2021-01-15 06:45:37 -08:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = [ lib.maintainers.marcweber ];
|
|
|
|
platforms = lib.platforms.linux;
|
2009-12-21 00:55:27 -08:00
|
|
|
};
|
|
|
|
}
|