Files
Filipriec 4ff73644c6 uml
2025-11-25 15:10:25 +01:00

19 lines
367 B
Nix

{
description = "PlantUML dev shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.plantuml
pkgs.graphviz
];
};
};
}