Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d1226bff8ec0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: da93c8fb2f39
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 15, 2019

  1. fuse-overlayfs: 0.3 -> 0.4

    dtzWill authored and FRidh committed Jun 15, 2019
    Copy the full SHA
    da93c8f View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/filesystems/fuse-overlayfs/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/filesystems/fuse-overlayfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:

stdenv.mkDerivation rec {
name = "fuse-overlayfs-${version}";
version = "0.3";
pname = "fuse-overlayfs";
version = "0.4";

src = fetchFromGitHub {
owner = "containers";
repo = "fuse-overlayfs";
repo = pname;
rev = "v${version}";
sha256 = "1cch2j397hydrhh62faqa663vas75qbmylqd06fk6nafasa3ri0l";
sha256 = "1hm1swgv9fi4kdwqssb6rh83i62qyfzv0yrh0z73kwrwdbqbg8m9";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];