2022-11-15T01:48:30 dufs 0.30.0 -> 0.31.0 https://github.com/sigoden/dufs/releases 2022-11-15T01:48:32 attrpath: dufs 2022-11-15T01:48:32 Checking auto update branch... 2022-11-15T01:48:32 No auto update branch exists 2022-11-15T01:48:33 Old version 0.30.0" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, rustPlatform, Security, openssl, pkg-config }: rustPlatform.buildRustPackage rec { pname = "dufs"; version = "0.31.0"; src = fetchFromGitHub { owner = "sigoden"; repo = pname; rev = "v${version}"; sha256 = "sha256-fR3CeF+ScvDoPJaevAAShUdZDDjD/ocZQl7dIk2jHso="; }; cargoSha256 = "sha256-VH/eu0qLh59J6uyj0RSqqEhlwghYg/JPp6u54BQzLPo="; nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; buildInputs = lib.optionals stdenv.isLinux [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 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 ]; }; }