Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .config/filegen-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .github/workflows/check-pre-commit-hooks.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 39 additions & 37 deletions .pre-commit-config.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# SPDX-FileCopyrightText: 2025 BWI GmbH
#
# SPDX-License-Identifier: CC0-1.0

version = 1

# Files autogenerated by engineering-standards
# Quite unlikely to be actually copyrightable, but we might as well try
[[annotations]]
SPDX-FileCopyrightText = "2026 Famedly GmbH"
SPDX-License-Identifier = "Apache-2.0"
path = ".gitattributes"
[[annotations]]
SPDX-FileCopyrightText = "2026 Famedly GmbH"
SPDX-License-Identifier = "Apache-2.0"
path = ".config/filegen-manifest.json"
[[annotations]]
SPDX-FileCopyrightText = "2026 Famedly GmbH"
SPDX-License-Identifier = "Apache-2.0"
path = ".github/workflows/check-pre-commit-hooks.yml"
[[annotations]]
SPDX-FileCopyrightText = "2026 Famedly GmbH"
SPDX-License-Identifier = "Apache-2.0"
path = ".pre-commit-config.yaml"
176 changes: 176 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions flake.lock.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2025 BWI GmbH

SPDX-License-Identifier: CC0-1.0
27 changes: 27 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## SPDX-FileCopyrightText: 2026 Famedly GmbH
##
## SPDX-License-Identifier: Apache-2.0
{
inputs = {
famedly-engineering-standards.url = "github:famedly/engineering-standards";

nixpkgs.follows = "famedly-engineering-standards/nixpkgs";
flake-parts.follows = "famedly-engineering-standards/flake-parts";
};

outputs =
{ flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.famedly-engineering-standards.flakeModules.default
];

systems = inputs.famedly-engineering-standards.lib.famedlySystems;

perSystem =
{ inputs', ... }:
{
devShells.default = inputs'.famedly-engineering-standards.devShells.rust;
};
};
}
Loading