1
Fork 0
steam-rss/flake.nix

26 lines
541 B
Nix
Raw Normal View History

2024-01-26 18:51:22 +00:00
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
rust-overlay.url = "github:oxalica/rust-overlay";
};
2024-03-01 13:26:47 +00:00
outputs =
{
self,
nixpkgs,
flake-utils,
rust-overlay,
}:
flake-utils.lib.eachDefaultSystem (
system:
2024-01-26 18:51:22 +00:00
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
in
{
devShells.default = import ./shell.nix { inherit pkgs; };
2024-03-01 13:26:47 +00:00
packages.default = pkgs.callPackage ./. { };
2024-01-26 18:51:22 +00:00
}
);
}