Skip to content

Commit

Permalink
crates/private/support/sel4-simple-task: Fix licensing information
Browse files Browse the repository at this point in the history
As part of more a detailed pass.

Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Oct 24, 2023
1 parent 5430d68 commit d20411a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/private/support/sel4-simple-task/threading/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
# SPDX-License-Identifier: MIT
#

[package]
name = "sel4-simple-task-threading"
version = "0.1.0"
authors = ["Nick Spinale <[email protected]>"]
edition = "2021"
license = "BSD-2-Clause"
license = "MIT"

[features]
alloc = []
Expand Down
3 changes: 2 additions & 1 deletion crates/private/support/sel4-simple-task/threading/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//
// Copyright 2023, Colias Group, LLC
// Copyright (c) 2020 Arm Limited
//
// SPDX-License-Identifier: BSD-2-Clause
// SPDX-License-Identifier: MIT
//

#![no_std]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
# SPDX-License-Identifier: MIT
#

{ mk, localCrates }:

mk {
mk rec {
package.name = "sel4-simple-task-threading";
package.license = "MIT";
nix.reuseFrontmatterArgs.licenseID = package.license;
nix.local.dependencies = with localCrates; [
sel4
sel4-panicking
Expand Down

0 comments on commit d20411a

Please sign in to comment.