mirror of
https://github.com/mgerb/top-of-reddit
synced 2026-01-08 09:32:49 +00:00
32 lines
561 B
Nix
32 lines
561 B
Nix
{
|
|
description = "playground";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
go
|
|
python313Full
|
|
python313Packages.wordcloud
|
|
];
|
|
|
|
shellHook = ''
|
|
|
|
'';
|
|
};
|
|
});
|
|
}
|