Merge pull request #82812 from zowoq/fuse-overlayfs

fuse-overlayfs: 0.7.7 -> 0.7.8
This commit is contained in:
Mario Rodas 2020-03-17 22:36:41 -05:00 committed by GitHub
commit 3c03f8d029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }: { stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config, fuse3 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fuse-overlayfs"; pname = "fuse-overlayfs";
version = "0.7.7"; version = "0.7.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "containers"; owner = "containers";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0fifqa4f79lhklajsf1aiipc4cyykscqlns9pzbcq5hdphi9fbsb"; sha256 = "10wsssf9mxgkgcqks3z02y9ya8xh4wd45lsb1jrvw31wmz9zpalc";
}; };
nativeBuildInputs = [ autoreconfHook pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fuse3 ]; buildInputs = [ fuse3 ];