Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #11 from target/default-enableMozillaOverlay-to-false
Browse files Browse the repository at this point in the history
nix/nixpkgs.nix: default `enableMozillaOverlay` to `false`.
  • Loading branch information
Profpatsch authored Mar 29, 2019
2 parents bc43240 + a6a9ded commit e943fa4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
pkgs ? import ./nix/nixpkgs.nix { enableMozillaOverlay = false; },
pkgs ? import ./nix/nixpkgs.nix { },
src ? builtins.fetchGit {
url = ./.;
ref = "HEAD";
Expand Down
2 changes: 1 addition & 1 deletion example/shell.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
with import ../nix/nixpkgs.nix { enableMozillaOverlay = false; };
with import ../nix/nixpkgs.nix { };

mkShell {
buildInputs = [
Expand Down
2 changes: 1 addition & 1 deletion nix/nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ enableMozillaOverlay }:
{ enableMozillaOverlay ? false }:
let
hostpkgs = import <nixpkgs> {};

Expand Down

0 comments on commit e943fa4

Please sign in to comment.