lol

Merge pull request #230974 from figsoda/oranda

oranda: init at 0.0.3

authored by

Jonas Heinrich and committed by
GitHub
f166dbcc 84aa6852

+60
+58
pkgs/applications/misc/oranda/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , bzip2 6 + , oniguruma 7 + , openssl 8 + , xz 9 + , zstd 10 + , stdenv 11 + , darwin 12 + }: 13 + 14 + rustPlatform.buildRustPackage rec { 15 + pname = "oranda"; 16 + version = "0.0.3"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "axodotdev"; 20 + repo = "oranda"; 21 + rev = "v${version}"; 22 + hash = "sha256-MT0uwLDrofCFyyYiUOogF2kNs6EPS1qxPz0gdK+Tkkg="; 23 + }; 24 + 25 + cargoHash = "sha256-dAnZc1VvOubfn7mnpttaB6FotN3Xc+t9Qn0n5uzv1Qg="; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + ]; 30 + 31 + buildInputs = [ 32 + bzip2 33 + oniguruma 34 + openssl 35 + xz 36 + zstd 37 + ] ++ lib.optionals stdenv.isDarwin [ 38 + darwin.apple_sdk.frameworks.Security 39 + ]; 40 + 41 + # requires internet access 42 + checkFlags = [ 43 + "--skip=build" 44 + ]; 45 + 46 + env = { 47 + RUSTONIG_SYSTEM_LIBONIG = true; 48 + ZSTD_SYS_USE_PKG_CONFIG = true; 49 + }; 50 + 51 + meta = with lib; { 52 + description = "Generate beautiful landing pages for your developer tools"; 53 + homepage = "https://github.com/axodotdev/oranda"; 54 + changelog = "https://github.com/axodotdev/oranda/blob/${src.rev}/CHANGELOG.md"; 55 + license = with licenses; [ asl20 mit ]; 56 + maintainers = with maintainers; [ figsoda ]; 57 + }; 58 + }
+2
pkgs/top-level/all-packages.nix
··· 33007 33007 33008 33008 opera = callPackage ../applications/networking/browsers/opera { }; 33009 33009 33010 + oranda = callPackage ../applications/misc/oranda { }; 33011 + 33010 33012 orca = python3Packages.callPackage ../applications/misc/orca { 33011 33013 inherit pkg-config; 33012 33014 };