Initial commit
Pinned OpenWrt feed hashes for realtek/rtl930x on snapshot and 25.12.5, generated with nix-openwrt-imagebuilder's release2nix. Expanding the feeds locally (rather than relying on upstream's index-level hashes) keeps every package a plain pinned fetchurl, and removes the import-from-derivation that would otherwise make evaluation depend on the OpenWrt download server.
This commit is contained in:
+73
@@ -0,0 +1,73 @@
|
||||
# snapshot package feeds for mips_24kc
|
||||
{
|
||||
sha256sums = {
|
||||
hash = "sha256-sJ4osTL+vA4WfApwIz+YsUpJ+y2KWHe4aIUtdW35z1g=";
|
||||
name = "mips_24kc-sha256sums";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/sha256sums";
|
||||
};
|
||||
feeds."base" = {
|
||||
baseUrl = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/base/";
|
||||
sourceInfo = {
|
||||
hash = "sha256-d53llg9unQH44j9SDZTVCTj6KM/oKJIPV1D3s7DGZTo=";
|
||||
name = "mips_24kc-base-packages.adb";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/base/packages.adb";
|
||||
};
|
||||
packages =
|
||||
let
|
||||
p = ./mips_24kc/base.nix;
|
||||
in
|
||||
if builtins.pathExists p then import p else null;
|
||||
};
|
||||
feeds."luci" = {
|
||||
baseUrl = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/luci/";
|
||||
sourceInfo = {
|
||||
hash = "sha256-8bbcqFu46Us+bHR9cxj1RqiQk6+msDblRHRoikGGrak=";
|
||||
name = "mips_24kc-luci-packages.adb";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/luci/packages.adb";
|
||||
};
|
||||
packages =
|
||||
let
|
||||
p = ./mips_24kc/luci.nix;
|
||||
in
|
||||
if builtins.pathExists p then import p else null;
|
||||
};
|
||||
feeds."packages" = {
|
||||
baseUrl = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/packages/";
|
||||
sourceInfo = {
|
||||
hash = "sha256-TU4rkACTn5i0IEGA0m8lWAOzdLDlw6QQhy0cAFJEkqM=";
|
||||
name = "mips_24kc-packages-packages.adb";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/packages/packages.adb";
|
||||
};
|
||||
packages =
|
||||
let
|
||||
p = ./mips_24kc/packages.nix;
|
||||
in
|
||||
if builtins.pathExists p then import p else null;
|
||||
};
|
||||
feeds."routing" = {
|
||||
baseUrl = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/routing/";
|
||||
sourceInfo = {
|
||||
hash = "sha256-EB64yl3lZp0FkODffaKcERO5Zhbc1LV3R7A9zoZQSoM=";
|
||||
name = "mips_24kc-routing-packages.adb";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/routing/packages.adb";
|
||||
};
|
||||
packages =
|
||||
let
|
||||
p = ./mips_24kc/routing.nix;
|
||||
in
|
||||
if builtins.pathExists p then import p else null;
|
||||
};
|
||||
feeds."telephony" = {
|
||||
baseUrl = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/telephony/";
|
||||
sourceInfo = {
|
||||
hash = "sha256-4x2XB/GHsZuQBN2lAeHbgFnAM7hloCIh7M40o7mTXH8=";
|
||||
name = "mips_24kc-telephony-packages.adb";
|
||||
url = "https://downloads.openwrt.org/snapshots/packages/mips_24kc/telephony/packages.adb";
|
||||
};
|
||||
packages =
|
||||
let
|
||||
p = ./mips_24kc/telephony.nix;
|
||||
in
|
||||
if builtins.pathExists p then import p else null;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user