mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, Security, openssl, pkg-config }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dufs";
|
|
version = "0.33.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sigoden";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ZcKNpKlyGMFPNiWA28zG5gh0gWxI4IKGP6vs9OBhxQU=";
|
|
};
|
|
|
|
cargoHash = "sha256-Ihq00dfjsJX2rNclfyYKp8a0U120+0YLZyvMO1yvBYw=";
|
|
|
|
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 ];
|
|
};
|
|
}
|