Skip to content

Commit

Permalink
build: add packagers shell to flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Jan 2, 2024
1 parent b744dfb commit e15b21b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
shellHook = "go mod tidy";
};

# nix develop .#packagers
devShells.packagers = pkgs.mkShell {
packages = with pkgs; [
apk-tools
dpkg
rpm
];
};

# nix develop .#docs
devShells.docs = pkgs.mkShell {
packages = with pkgs; with staging-pkgs.python311Packages; [
(pkgs.writeScriptBin "ci-docs" "task docs:test")
Expand Down

0 comments on commit e15b21b

Please sign in to comment.