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

Commits on Jan 25, 2021

  1. bindfs: 1.14.8 -> 1.14.9

    talyz committed Jan 25, 2021
    Copy the full SHA
    95ab0ed View commit details
  2. Merge pull request #110727 from talyz/bindfs-1.14.9

    bindfs: 1.14.8 -> 1.14.9
    lovesegfault authored Jan 25, 2021
    Copy the full SHA
    7a5e4b7 View commit details
Showing with 2 additions and 4 deletions.
  1. +2 −4 pkgs/tools/filesystems/bindfs/default.nix
6 changes: 2 additions & 4 deletions pkgs/tools/filesystems/bindfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{ lib, stdenv, fetchurl, fuse, pkg-config }:

stdenv.mkDerivation rec {
version = "1.14.8";
version = "1.14.9";
pname = "bindfs";

src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
sha256 = "15y4brlcrqhxl6z73785m0dr1vp2q3wc6xss08x9jjr0apzmmjp5";
sha256 = "0fnij365dn4ihkpfc92x63inxxwpminzffyj55krp1w02canpl5n";
};

dontStrip = true;

nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse ];
postFixup = ''