turbo: install from unstable

This commit is contained in:
2024-03-13 13:56:38 +02:00
committed by Motiejus Jakštys
parent d5d5c48f04
commit 624a3fbb91
4 changed files with 26 additions and 66 deletions

View File

@@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat.url = "github:nix-community/flake-compat";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
@@ -75,6 +76,7 @@
outputs = {
self,
nixpkgs,
nixpkgs-unstable,
agenix,
deploy-rs,
flake-utils,
@@ -101,8 +103,8 @@
deploy-rs = super.deploy-rs-pkg;
inherit (super.deploy-rs) lib;
};
deploy-rs-pkg = null;
})
(_: _: {deploy-rs-pkg = null;})
(_: super: {
inherit (super.callPackage ./pkgs/compress-drv.nix {}) compressDrvWeb;
@@ -112,8 +114,11 @@
# TODO: copied from 24.05
turbo = super.callPackage ./pkgs/turbo.nix {};
})
(_: _: {
nixpkgs-unstable = import nixpkgs-unstable {
inherit (super) system;
};
crossArm64 = import nixpkgs {
system = "x86_64-linux";
hostPlatform.config = "aarch64-linux";