2015-01-10 23:44:31 +00:00
|
|
|
{ stdenv, fetchgit, 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-10 23:44:31 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/pcarrier/afuse.git;
|
|
|
|
rev = "a0892f5506ddcca2031825aff24f1518c8c2f1c8";
|
|
|
|
sha256 = "12071ff5171d4d5ce4d8835385f50e8079b25e885816b8ad6f22eb46c6497b28";
|
2009-12-21 08:55:27 +00:00
|
|
|
};
|
|
|
|
|
2015-01-10 23:44:31 +00:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig 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";
|
2015-01-10 23:44:31 +00: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
|
|
|
};
|
|
|
|
}
|