Compare commits
No commits in common. "025cd39d2fdfa1d2c8d74c36ce2301516bf68c76" and "7467b40e30b9954a7e75fe0afb704971a4b22249" have entirely different histories.
025cd39d2f
...
7467b40e30
1 changed files with 4 additions and 9 deletions
13
flake.nix
13
flake.nix
|
|
@ -8,17 +8,12 @@
|
||||||
outputs = { self, nixpkgs }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
overlay = final: prev: {
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
waterfox = final.callPackage ./pkgs/waterfox/default.nix { };
|
|
||||||
waterfox-bin = final.callPackage ./pkgs/waterfox-bin/default.nix { };
|
|
||||||
};
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system}.extend overlay;
|
|
||||||
in {
|
in {
|
||||||
overlays.default = overlay;
|
|
||||||
|
|
||||||
packages.${system} = {
|
packages.${system} = {
|
||||||
inherit (pkgs) waterfox waterfox-bin;
|
waterfox = pkgs.callPackage ./pkgs/waterfox/default.nix { };
|
||||||
default = pkgs.waterfox-bin;
|
waterfox-bin = pkgs.callPackage ./pkgs/waterfox-bin/default.nix { };
|
||||||
|
default = self.packages.${system}.waterfox-bin;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue