blog/flake.nix

27 lines
651 B
Nix
Raw Normal View History

2022-06-25 09:14:15 +01:00
{
description = "legdur: verify integrity of large directories over time";
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}";
2022-06-25 09:14:15 +01:00
in rec {
# `nix develop`
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs;
with pkgs.python38Packages; [
2022-08-21 09:41:38 +01:00
cacert
2022-06-25 09:14:15 +01:00
git
hugo
2022-08-21 12:02:43 +01:00
hut
2022-06-25 09:14:15 +01:00
];
};
});
}