mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-13 12:05:02 +03:00
825eecefa1
Change-Id: Iea66080cc9f7f49bbaac42ca0eb51de5dfc4bcdc
40 lines
834 B
Nix
40 lines
834 B
Nix
{
|
|
description = "workspace configuration for git-bug";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
flake-utils,
|
|
nixpkgs,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShell = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
codespell
|
|
gh
|
|
git
|
|
go
|
|
golangci-lint
|
|
nixfmt-rfc-style
|
|
nodePackages.prettier
|
|
];
|
|
|
|
shellHook = ''
|
|
# Use //:.gitmessage as the commit message template
|
|
${pkgs.git}/bin/git config --local commit.template ".gitmessage"
|
|
'';
|
|
};
|
|
}
|
|
);
|
|
}
|