1 { lib, stdenv, fetchurl, readline }:
3 stdenv.mkDerivation rec {
8 url = "https://mujs.com/downloads/mujs-${version}.tar.xz";
9 sha256 = "sha256-ZpdtHgajUnVKI0Kvc9Guy7U8x82uK2jNoBO33c+SMjM=";
12 buildInputs = [ readline ];
14 makeFlags = [ "prefix=$(out)" ];
17 homepage = "https://mujs.com/";
18 description = "A lightweight, embeddable Javascript interpreter";
19 platforms = platforms.unix;
20 maintainers = with maintainers; [ pSub ];
21 license = licenses.isc;