Merge pull request #5702 from ryantm/afuse
update afuse to version 0.4.1
This commit is contained in:
commit
9bb2b7cdb5
@ -1,18 +1,18 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, fuse }:
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, fuse }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "afuse-0.2";
|
name = "afuse-0.4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/afuse/0.2/afuse-0.2.tar.gz;
|
url = https://github.com/pcarrier/afuse/archive/v0.4.1.tar.gz;
|
||||||
sha256 = "1lj2jdks0bgwxbjqp5a9f7qdry19kar6pg7dh1ml98gapx9siylj";
|
sha256 = "1sfhicmxppkvdd4z9klfn63snb71gr9hff6xij1gzk94xg6m0ycc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig fuse ];
|
buildInputs = [ autoreconfHook pkgconfig fuse ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Automounter in userspace";
|
description = "Automounter in userspace";
|
||||||
homepage = http://sourceforge.net/projects/afuse;
|
homepage = https://github.com/pcarrier/afuse;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user