2024-04-07 12:16:13 +02:00
|
|
|
{
|
|
|
|
description = "Vikunja dev environment";
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }:
|
|
|
|
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
|
|
in {
|
|
|
|
defaultPackage.x86_64-linux =
|
|
|
|
pkgs.mkShell { buildInputs = with pkgs; [
|
|
|
|
# General tools
|
|
|
|
git-cliff
|
|
|
|
# Frontend tools
|
|
|
|
nodePackages.pnpm cypress
|
|
|
|
# API tools
|
|
|
|
go golangci-lint mage
|
2024-04-21 21:03:57 +02:00
|
|
|
# Desktop
|
|
|
|
electron
|
2024-04-07 12:16:13 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|