default.nix: import <mozillaOverlay>

softspi
Astro 2019-03-19 19:27:54 +01:00
parent f6282f33ff
commit 876658e712
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
let
mozillaOverlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
mozillaOverlay = import <mozillaOverlay>;
pkgs = import <nixpkgs> { overlays = [ mozillaOverlay ]; };
in
with import <nixpkgs> { overlays = [ mozillaOverlay ]; };
with pkgs;
let
rustPlatform = recurseIntoAttrs (callPackage (import ./nix/rustPlatform.nix) {});
adc2tcp = callPackage (import ./nix/adc2tcp.nix) { inherit rustPlatform; };