commit 6ec531c1ea2a74f3f603ab8346d8ad3e31f97000
parent 551ab386e35f64457e8ca0c669b68f1c429d3545
Author: Bor Grošelj Simić <bgs@turminal.net>
Date: Fri, 12 Apr 2024 22:00:57 +0200
mime: add license headers for +platform files
Diffstat:
3 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/mime/+freebsd.ha b/mime/+freebsd.ha
@@ -1,2 +1,5 @@
+// SPDX-License-Identifier: MPL-2.0
+// (c) Hare authors <https://harelang.org>
+
// Path to the system MIME database.
export def SYSTEM_DB: str = "/etc/mime.types";
diff --git a/mime/+linux.ha b/mime/+linux.ha
@@ -1,2 +1,5 @@
+// SPDX-License-Identifier: MPL-2.0
+// (c) Hare authors <https://harelang.org>
+
// Path to the system MIME database.
export def SYSTEM_DB: str = "/etc/mime.types";
diff --git a/mime/+openbsd.ha b/mime/+openbsd.ha
@@ -1,2 +1,5 @@
+// SPDX-License-Identifier: MPL-2.0
+// (c) Hare authors <https://harelang.org>
+
// Path to the system MIME database.
export def SYSTEM_DB: str = "/usr/share/misc/mime.types";