blog/flake.nix

34 lines
792 B
Nix
Raw Normal View History

2022-06-25 09:14:15 +01:00
{
description = "Adventurous computing, a blog by Cyryl Płotnicki";
2022-06-25 09:14:15 +01:00
inputs = {
utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { self, nixpkgs, utils, flake-compat }:
utils.lib.eachDefaultSystem (system:
2022-08-21 11:41:21 +01:00
let pkgs = nixpkgs.legacyPackages."${system}";
in {
2022-06-25 09:14:15 +01:00
devShell = pkgs.mkShell {
buildInputs = with pkgs;
2022-06-25 09:14:15 +01:00
with pkgs.python38Packages; [
2022-08-21 09:41:38 +01:00
cacert
2023-08-12 18:40:03 +01:00
rsync
2022-06-25 09:14:15 +01:00
git
go
2022-06-25 09:14:15 +01:00
hugo
2023-08-17 17:38:12 +01:00
htmltest
2022-08-21 12:02:43 +01:00
hut
nodejs
ruby
2023-08-12 15:05:24 +01:00
statix
bundler
2022-06-25 09:14:15 +01:00
];
NODE_PATH="./node_modules";
2022-06-25 09:14:15 +01:00
};
});
}