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: bb20ef2f536c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e6421306f6d8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 12, 2020

  1. f2fs-tools: 1.13.0 -> 1.14.0

    Allow use of 'compression' option on volume creation, supported at
    mount-time in kernels 5.6+
    
    (cherry picked from commit b467630)
    anoother authored and redvers committed Nov 12, 2020
    Copy the full SHA
    06ded01 View commit details
  2. Merge pull request #103527 from redvers/update_f2fs-tools_1.13.0_to_1…

    ….14.0
    
    f2fs-tools: 1.13.0 -> 1.14.0 [20.09]
    jagajaga authored Nov 12, 2020
    Copy the full SHA
    e642130 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/filesystems/f2fs-tools/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/f2fs-tools/default.nix
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@

stdenv.mkDerivation rec {
pname = "f2fs-tools";
version = "1.13.0";
version = "1.14.0";

src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git";
rev = "refs/tags/v${version}";
sha256 = "0h6wincsvg6s232ajxblg66r5nx87v00a4w7xkbxgbl1qyny477j";
sha256 = "06ss05n87i1c3149qb3n7j1qp2scv3g2adx0v6ljkl59ab9b5saj";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];