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: 0356c1b87d2d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 67cc7a82544a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 5, 2019

  1. davfs2: update to version 1.5.5

    peti committed Mar 5, 2019
    Copy the full SHA
    67cc7a8 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/tools/filesystems/davfs2/default.nix
5 changes: 2 additions & 3 deletions pkgs/tools/filesystems/davfs2/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, neon, zlib }:

stdenv.mkDerivation rec {
name = "davfs2-1.5.4";
name = "davfs2-1.5.5";

src = fetchurl {
url = "mirror://savannah/davfs2/${name}.tar.gz";
sha256 = "1q4ngkzbkq0rfxikvkwg7ccpzi1nkkmlf8bb46326y1aj7qf1i69";
sha256 = "0bxd62268pix7w1lg7f9y94v34f4l45fdf6clyarj43qmljnlz2q";
};

buildInputs = [ neon zlib ];
@@ -30,6 +30,5 @@ stdenv.mkDerivation rec {
'';

platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.peti ];
};
}