bsh: set license (#516407)

This commit is contained in:
Sandro
2026-05-04 13:21:52 +00:00
committed by GitHub
+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;
};
})