redo: clarify licenses

The author accepts either BSD-2-Clause, MIT, or ISC
This commit is contained in:
Acid Bong
2026-06-24 18:32:24 +03:00
parent ce4754c1e3
commit 6dff14e979
+8 -1
View File
@@ -35,7 +35,14 @@ stdenv.mkDerivation {
meta = {
homepage = "https://github.com/jdebp/redo";
description = "System for building target files from source files";
license = lib.licenses.bsd2;
# https://github.com/jdebp/redo/blob/trunk/source/COPYING
license =
with lib.licenses;
OR [
bsd2 # for some reason BSD-2-Clause and FreeBSD, despite being synonyms, are listed separately
isc
mit
];
maintainers = [ ];
mainProgram = "redo";
platforms = lib.platforms.unix;