about summary refs log tree commit diff
path: root/pkgs/development/interpreters/mujs
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-04-15 10:18:55 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-04-15 10:18:55 +0200
commit54ac23c6b92f7ced5ee3892255996f7947ab9a96 (patch)
treec65e7375a601a6f56d60adb594f5e5d63cf8b6f5 /pkgs/development/interpreters/mujs
parent7bf3b1fe952dcc59a8d3e9c5f6c99d6401ee49c7 (diff)
mujs: 1.0.9 -> 1.1.1
Diffstat (limited to 'pkgs/development/interpreters/mujs')
-rw-r--r--pkgs/development/interpreters/mujs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix
index a0e23614ebc48..d9b52af925443 100644
--- a/pkgs/development/interpreters/mujs/default.nix
+++ b/pkgs/development/interpreters/mujs/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "mujs";
-  version = "1.0.9";
+  version = "1.1.1";
 
   src = fetchurl {
     url = "https://mujs.com/downloads/mujs-${version}.tar.xz";
-    sha256 = "sha256-zKjWafQtO2OEPelF370s5KkArbT+gQv3lQQpYdGw6HY=";
+    sha256 = "sha256-meYfyWGfHVULVjVyA7NJ2Ih9CjbffblWc1yijU/3e7A=";
   };
 
   buildInputs = [ readline ];
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
     description = "A lightweight, embeddable Javascript interpreter";
     platforms = platforms.unix;
     maintainers = with maintainers; [ pSub ];
-    license = licenses.gpl3;
+    license = licenses.isc;
   };
 }