diff --git a/pkgs/applications/misc/oranda/default.nix b/pkgs/applications/misc/oranda/default.nix new file mode 100644 index 000000000000..9bc9d68fb44e --- /dev/null +++ b/pkgs/applications/misc/oranda/default.nix @@ -0,0 +1,58 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, pkg-config +, bzip2 +, oniguruma +, openssl +, xz +, zstd +, stdenv +, darwin +}: + +rustPlatform.buildRustPackage rec { + pname = "oranda"; + version = "0.0.3"; + + src = fetchFromGitHub { + owner = "axodotdev"; + repo = "oranda"; + rev = "v${version}"; + hash = "sha256-MT0uwLDrofCFyyYiUOogF2kNs6EPS1qxPz0gdK+Tkkg="; + }; + + cargoHash = "sha256-dAnZc1VvOubfn7mnpttaB6FotN3Xc+t9Qn0n5uzv1Qg="; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + bzip2 + oniguruma + openssl + xz + zstd + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + + # requires internet access + checkFlags = [ + "--skip=build" + ]; + + env = { + RUSTONIG_SYSTEM_LIBONIG = true; + ZSTD_SYS_USE_PKG_CONFIG = true; + }; + + meta = with lib; { + description = "Generate beautiful landing pages for your developer tools"; + homepage = "https://github.com/axodotdev/oranda"; + changelog = "https://github.com/axodotdev/oranda/blob/${src.rev}/CHANGELOG.md"; + license = with licenses; [ asl20 mit ]; + maintainers = with maintainers; [ figsoda ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 714635a1da6e..038cbb35a0cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32997,6 +32997,8 @@ with pkgs; opera = callPackage ../applications/networking/browsers/opera { }; + oranda = callPackage ../applications/misc/oranda { }; + orca = python3Packages.callPackage ../applications/misc/orca { inherit pkg-config; };