mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
21 lines
558 B
Nix
21 lines
558 B
Nix
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem
|
|
, sources ? import ./sources.nix { inherit system; } }:
|
|
|
|
let
|
|
mozPkgs = import "${sources.nixpkgsMoz}/package-set.nix" {
|
|
pkgs = import nixpkgs { inherit system; };
|
|
};
|
|
rustChannel = mozPkgs.rustChannelOf {
|
|
rustToolchain = ../rust-toolchain;
|
|
sha256 = "sha256-hKjJt5RAI9cf55orvwGEkOXIGOaySX5dD2aj3iQ/IDs=";
|
|
};
|
|
in import nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
(self: super: {
|
|
rustc = rustChannel.rust;
|
|
inherit (rustChannel) cargo rust rust-std rust-src;
|
|
})
|
|
];
|
|
}
|