2022-06-25 09:14:15 +01:00
|
|
|
{
|
2023-01-15 10:29:26 +00: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}";
|
2023-01-15 10:29:26 +00:00
|
|
|
in {
|
2022-06-25 09:14:15 +01:00
|
|
|
devShell = pkgs.mkShell {
|
2023-01-15 10:29:26 +00:00
|
|
|
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
|
2023-08-12 23:33:16 +01:00
|
|
|
go
|
2022-06-25 09:14:15 +01:00
|
|
|
hugo
|
2022-08-21 12:02:43 +01:00
|
|
|
hut
|
2023-08-12 23:33:16 +01:00
|
|
|
nodejs
|
2023-01-15 10:29:26 +00:00
|
|
|
ruby
|
2023-08-12 15:05:24 +01:00
|
|
|
statix
|
2023-01-15 10:29:26 +00:00
|
|
|
bundler
|
2022-06-25 09:14:15 +01:00
|
|
|
];
|
2023-08-12 23:33:16 +01:00
|
|
|
NODE_PATH="./node_modules";
|
2022-06-25 09:14:15 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|