dufs 0.34.1 -> 0.34.2 https://github.com/sigoden/dufs/releases attrpath: dufs Checking auto update branch... No auto update branch exists Old version 0.34.1" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, rustPlatform, Security, openssl, pkg-config }: rustPlatform.buildRustPackage rec { pname = "dufs"; version = "0.34.2"; src = fetchFromGitHub { owner = "sigoden"; repo = pname; rev = "v${version}"; sha256 = "sha256-NkH7w5HEQFhnovUmjN/qW5QZwO8mVQZMbhpNFkKtLTI="; }; cargoHash = "sha256-bUznaVyhZswLaXUgC+GUh5ZpJQW7Vkcoui6CO9ds22g="; nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; buildInputs = lib.optionals stdenv.isLinux [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; # FIXME: checkPhase on darwin will leave some zombie spawn processes # see https://github.com/NixOS/nixpkgs/issues/205620 doCheck = !stdenv.isDarwin; checkFlags = [ # tests depend on network interface, may fail with virtual IPs. "--skip=validate_printed_urls" ]; meta = with lib; { description = "A file server that supports static serving, uploading, searching, accessing control, webdav"; homepage = "https://github.com/sigoden/dufs"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = [ maintainers.holymonson ]; }; }