Merge pull request #55450 from tilpner/fuse-overlayfs-update

fuse-overlayfs: 0.2 -> 0.3
This commit is contained in:
Graham Christensen 2019-02-14 06:47:38 -05:00 committed by GitHub
commit a71f344211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +1,25 @@
{ pkgs, lib, autoreconfHook, pkgconfig, fuse3 }: { stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
let stdenv.mkDerivation rec {
version = "0.2"; name = "fuse-overlayfs-${version}";
in version = "0.3";
pkgs.stdenv.mkDerivation {
name = "fuse-overlayfs-${version}";
src = pkgs.fetchFromGitHub { src = fetchFromGitHub {
owner = "containers"; owner = "containers";
repo = "fuse-overlayfs"; repo = "fuse-overlayfs";
rev = "1e2b65baa2f75eea0e4bab90b5ac81dd8471256c"; rev = "v${version}";
sha256 = "0a9ix8rqjs5r28jsriyiv4yq7iilmv69x05kf23s1ihzrvrfkl08"; sha256 = "1cch2j397hydrhh62faqa663vas75qbmylqd06fk6nafasa3ri0l";
}; };
nativeBuildInputs = [ autoreconfHook pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse3 ]; buildInputs = [ fuse3 ];
meta = with lib; { meta = with lib; {
homepage = https://github.com/containers/fuse-overlayfs; homepage = https://github.com/containers/fuse-overlayfs;
description = "FUSE implementation for overlayfs"; description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers."; longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.ma9e ]; maintainers = [ maintainers.ma9e ];
}; };
} }