fix: update all flake.locks
This commit is contained in:
parent
9b3f73848c
commit
f79afe59c3
10 changed files with 132 additions and 127 deletions
|
@ -1,10 +1,14 @@
|
|||
{
|
||||
description = "Rust Developer Environment";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
rust.url = "github:oxalica/rust-overlay";
|
||||
};
|
||||
outputs = { self, nixpkgs, rust }: let
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
rust,
|
||||
}: let
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
|
@ -15,12 +19,12 @@
|
|||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [
|
||||
(import rust)
|
||||
(import rust)
|
||||
];
|
||||
};
|
||||
inherit system;
|
||||
in {
|
||||
rust-app = pkgs.callPackage ./nix/package.nix { };
|
||||
rust-app = pkgs.callPackage ./nix/package.nix {};
|
||||
default = self.packages.${system}.rust-app;
|
||||
});
|
||||
|
||||
|
@ -28,7 +32,7 @@
|
|||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [
|
||||
(import rust)
|
||||
(import rust)
|
||||
];
|
||||
};
|
||||
inherit system;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue