mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.7 KiB
Nix
65 lines
1.7 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, stdenv
|
|
, darwin
|
|
, curl
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "miniserve";
|
|
version = "0.28.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "miniserve";
|
|
rev = "v${version}";
|
|
hash = "sha256-jrQnmIYap5eHVWPqoRsXVroB0VWLKxesi3rB/WylR0U=";
|
|
};
|
|
|
|
cargoHash = "sha256-/BBue4YfpFk/tId2GV9sstEdgNuy3QnieINGnx45ydU=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
curl
|
|
];
|
|
|
|
checkFlags = [
|
|
"--skip=bind_ipv4_ipv6::case_2"
|
|
"--skip=qrcode_hidden_in_tty_when_disabled"
|
|
"--skip=qrcode_shown_in_tty_when_enabled"
|
|
"--skip=show_root_readme_contents"
|
|
"--skip=validate_printed_urls"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
$out/bin/miniserve --print-manpage >miniserve.1
|
|
installManPage miniserve.1
|
|
|
|
installShellCompletion --cmd miniserve \
|
|
--bash <($out/bin/miniserve --print-completions bash) \
|
|
--fish <($out/bin/miniserve --print-completions fish) \
|
|
--zsh <($out/bin/miniserve --print-completions zsh)
|
|
'';
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
description = "CLI tool to serve files and directories over HTTP";
|
|
homepage = "https://github.com/svenstaro/miniserve";
|
|
changelog = "https://github.com/svenstaro/miniserve/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "miniserve";
|
|
};
|
|
}
|