treefmt / nix fmt (pull_request) Successful in 4s
build_systems / prebuild-common-x86-64-v3 (pull_request) Successful in 21s
build_systems / build-portal-1 (pull_request) Successful in 17s
test ebook search / test-ebook-search (pull_request) Successful in 1m7s
build_systems / build-brain (pull_request) Successful in 42s
build_systems / build-jeeves (pull_request) Successful in 1m25s
build_systems / build-bob (pull_request) Successful in 2m3s
build_systems / build-rhapsody-in-green (pull_request) Failing after 1h18m40s
33 lines
928 B
Nix
33 lines
928 B
Nix
{ inputs, ... }:
|
|
{
|
|
# Additional package sets are accessible through `pkgs.<name>`.
|
|
stable = final: _prev: {
|
|
stable = import inputs.nixpkgs-stable {
|
|
system = final.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
master = final: _prev: {
|
|
master = import inputs.nixpkgs-master {
|
|
system = final.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
# Baseline x86-64 (v1) packages for prebuilt applications that should not
|
|
# inherit an x86-64-v3 host platform.
|
|
x86-v1 = final: _prev: {
|
|
x86-v1 = import inputs.nixpkgs {
|
|
system = final.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
|
|
# Keep the complete KDE/Qt package scope on the same baseline architecture
|
|
# so large packages such as Qt WebEngine can use the upstream binary cache.
|
|
kdePackages = final.x86-v1.kdePackages;
|
|
};
|
|
|
|
patches = import ./patches;
|
|
}
|