Skip to content

Commit

Permalink
fix brave
Browse files Browse the repository at this point in the history
  • Loading branch information
novel2430 committed May 6, 2024
1 parent 0146d10 commit b44f949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# commands such as:
# nix-build -A mypackage

{ pkgs }:
{ unstable, pkgs ? import <nixpkgs> { } }:

{
# The `lib`, `modules`, and `overlays` names are special
Expand All @@ -16,7 +16,7 @@

zju-connect = pkgs.callPackage ./pkgs/zju-connect { };
wpsoffice-cn = pkgs.libsForQt5.callPackage ./pkgs/wpsoffice-cn { };
brave-browser-gtk4-12-5 = pkgs.callPackage ./pkgs/brave-browser { };
brave-browser-gtk4-12-5 = unstable.callPackage ./pkgs/brave-browser { };
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
}
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
{
legacyPackages = forAllSystems (system: import ./default.nix {
pkgs = import nixpkgs { inherit system; };
unstable = import nixpkgs {inherit system; };
});
packages = forAllSystems (system: nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) self.legacyPackages.${system});
};
Expand Down

0 comments on commit b44f949

Please sign in to comment.