about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2019-02-14 06:47:38 -0500
committerGitHub <noreply@github.com>2019-02-14 06:47:38 -0500
commita71f3442111b00a556b113bda7f427dedbdef7d7 (patch)
tree16f441c66bf2aa069180a7c4eaf3368940196c31 /pkgs/tools/filesystems
parent4023ea3694c7da2c966be1edc1236630dc23e88b (diff)
parentb331161df295a79d70e685d6ef2e011dc9465983 (diff)
downloadnixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar.gz
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar.bz2
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar.lz
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar.xz
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.tar.zst
nixlib-a71f3442111b00a556b113bda7f427dedbdef7d7.zip
Merge pull request #55450 from tilpner/fuse-overlayfs-update
fuse-overlayfs: 0.2 -> 0.3
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/fuse-overlayfs/default.nix44
1 files changed, 21 insertions, 23 deletions
diff --git a/pkgs/tools/filesystems/fuse-overlayfs/default.nix b/pkgs/tools/filesystems/fuse-overlayfs/default.nix
index 515fdd4e2608..c4d52462906e 100644
--- a/pkgs/tools/filesystems/fuse-overlayfs/default.nix
+++ b/pkgs/tools/filesystems/fuse-overlayfs/default.nix
@@ -1,27 +1,25 @@
-{ pkgs, lib, autoreconfHook, pkgconfig, fuse3 }:
+{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
 
-let
-  version = "0.2";
-in
-  pkgs.stdenv.mkDerivation {
-    name = "fuse-overlayfs-${version}";
+stdenv.mkDerivation rec {
+  name = "fuse-overlayfs-${version}";
+  version = "0.3";
 
-    src = pkgs.fetchFromGitHub {
-      owner = "containers";
-      repo = "fuse-overlayfs";
-      rev = "1e2b65baa2f75eea0e4bab90b5ac81dd8471256c";
-      sha256 = "0a9ix8rqjs5r28jsriyiv4yq7iilmv69x05kf23s1ihzrvrfkl08";
-    };
+  src = fetchFromGitHub {
+    owner = "containers";
+    repo = "fuse-overlayfs";
+    rev = "v${version}";
+    sha256 = "1cch2j397hydrhh62faqa663vas75qbmylqd06fk6nafasa3ri0l";
+  };
 
-    nativeBuildInputs = [ autoreconfHook pkgconfig ];
-    buildInputs = [ fuse3 ];
+  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;
-      platforms = platforms.unix;
-      maintainers = [ maintainers.ma9e ];
-    };
-  }
+  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;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.ma9e ];
+  };
+}