fuse-overlayfs: 0.2 -> 0.3
This commit is contained in:
parent
6f10a0de83
commit
b331161df2
1 changed files with 21 additions and 23 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue