bsh: set license

source: https://github.com/beanshell/beanshell/blob/master/LICENSE
This commit is contained in:
jopejoe1
2026-05-04 11:32:24 +02:00
parent ba81fb35d7
commit 90c1be3ee6
+7 -1
View File
@@ -1,4 +1,7 @@
{ fetchurl }:
{
lib,
fetchurl,
}:
fetchurl (finalAttrs: {
name = "${finalAttrs.pname}-${finalAttrs.version}.jar";
@@ -6,4 +9,7 @@ fetchurl (finalAttrs: {
version = "2.1.1";
url = "https://github.com/beanshell/beanshell/releases/download/${finalAttrs.version}/bsh-${finalAttrs.version}.jar";
hash = "sha256-cRksu+Seeiac/LoF3Fy5WcM7myba/NYmbKMoi0YfhqM=";
meta = {
license = lib.licenses.asl20;
};
})