mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 18:19:09 +00:00
13 lines
537 B
Nix
13 lines
537 B
Nix
|
# My custom shell for developing Flatpak manifests.
|
||
|
{ mkShell, lib, flatpak-builder, editorconfig-checker, editorconfig-core-c, git, dasel }:
|
||
|
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
dasel # For converting various data into something.
|
||
|
flatpak-builder # A required tool.
|
||
|
editorconfig-checker # We're most likely writing manifests in YAML so I need them consistent spaces.
|
||
|
editorconfig-core-c # editorconfig will not work without the engine, of course.
|
||
|
git # This is the common choice as the VCS — otherwise, bring your own.
|
||
|
];
|
||
|
}
|