atrip/docs/shell.nix

18 lines
245 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell rec {
imports = [ ../shell.nix ];
buildInputs = with pkgs; [
emacs
emacsPackages.ox-rst
emacsPackages.htmlize
python3
python3Packages.breathe
doxygen
sphinx
];
}