You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
479 B
Nix
13 lines
479 B
Nix
options: let
|
|
combinedOptions = options // {
|
|
overlays = [
|
|
(import ../nixpkgs-mozilla/rust-overlay.nix)
|
|
];
|
|
};
|
|
in {
|
|
master = (import (fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) combinedOptions);
|
|
unstable = (import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) combinedOptions);
|
|
nixpkgs = (import <nixpkgs>) combinedOptions;
|
|
myNixpkgs = (import ../packages) {};
|
|
}
|