This commit is contained in:
Filipriec
2025-11-25 15:10:25 +01:00
parent f6d83a0acc
commit 4ff73644c6
6 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
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
];
};
};
}