xenon-browser/flake.nix

21 lines
492 B
Nix
Raw Normal View History

2023-08-16 10:51:58 +00:00
{
2023-08-24 16:07:25 +00:00
description = "xenon-browser";
2023-08-16 10:51:58 +00:00
2023-08-24 16:07:25 +00:00
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:theotheroracle/nixpkgs";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
2023-08-16 12:43:10 +00:00
{
2023-08-24 16:07:25 +00:00
devShells.default = import ./shell.nix { inherit pkgs; };
packages.default = pkgs.callPackage ./default.nix { };
}
);
}