summary refs log tree commit diff
path: root/pkgs/tools/filesystems/fuse-overlayfs
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2019-12-12 19:41:03 +0800
committerPeter Hoeg <peter@hoeg.com>2019-12-12 19:41:03 +0800
commitaf1b93f571c1f83990ea6c8fb920af9450e3dba4 (patch)
tree0a86559b851f756473fa5027b67d485e265ca510 /pkgs/tools/filesystems/fuse-overlayfs
parent3140fa89c51233397f496f49014f6b23216667c2 (diff)
downloadnixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar.gz
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar.bz2
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar.lz
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar.xz
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.tar.zst
nixpkgs-af1b93f571c1f83990ea6c8fb920af9450e3dba4.zip
fuse-overlayfs: 0.7 -> 0.7.2
Diffstat (limited to 'pkgs/tools/filesystems/fuse-overlayfs')
-rw-r--r--pkgs/tools/filesystems/fuse-overlayfs/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/fuse-overlayfs/default.nix b/pkgs/tools/filesystems/fuse-overlayfs/default.nix
index c65b2a63f2d..0d7bcdcd0f2 100644
--- a/pkgs/tools/filesystems/fuse-overlayfs/default.nix
+++ b/pkgs/tools/filesystems/fuse-overlayfs/default.nix
@@ -2,24 +2,25 @@
 
 stdenv.mkDerivation rec {
   pname = "fuse-overlayfs";
-  version = "0.7";
+  version = "0.7.2";
 
   src = fetchFromGitHub {
     owner = "containers";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1nhqy1fdzhkjhqs54nq66zj5bf85n3gr4k6zl0hswdvhg6flkg75";
+    sha256 = "1ybrki63ixrkraynms5i4jiil9901whwxs6p61h2c2ild8w2ir8n";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
   buildInputs = [ fuse3 ];
 
   meta = with lib; {
-    homepage = https://github.com/containers/fuse-overlayfs;
     description = "FUSE implementation for overlayfs";
     longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
     license = licenses.gpl3;
+    maintainers = with maintainers; [ ma9e ];
     platforms = platforms.unix;
-    maintainers = [ maintainers.ma9e ];
+    inherit (src.meta) homepage;
   };
 }