nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
551 bytes raw
1
#include "firefox.h"
2
#include "../glibc/glibc.h"
3
4
static const pkg *const firefox_deps[] = { &pkgs_glibc };
5
6
const pkg pkgs_firefox = {
7
    .name        = "firefox",
8
    .version     = "133.0",
9
    .src         = "https://archive.mozilla.org/pub/firefox/releases/133.0/source/firefox-133.0.source.tar.xz",
10
    .sha256      = "0000000000000000000000000000000000000000000000000000000000000000",
11
    .deps        = { .data = firefox_deps, .len = sizeof(firefox_deps) / sizeof(firefox_deps[0]) },
12
    .build_flags = "",
13
    .build_sys   = BUILD_SHELL,
14
};