nixpkgs/pkgs/development/interpreters/mujs/default.nix
Mario Rodas cd4ba7172b mujs: fix build on darwin
MuJS 1.3.3 made the Darwin patch obsolete, and seems that it can build
on Darwin without it.
2023-04-10 14:35:00 -05:00

34 lines
713 B
Nix

{ lib
, stdenv
, fetchurl
, readline
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "mujs";
version = "1.3.3";
src = fetchurl {
url = "https://mujs.com/downloads/mujs-${version}.tar.gz";
hash = "sha256-4sXuVBbf2iIwx6DLeJXfmpstWyBluxjn5k3sKnlqvhs=";
};
buildInputs = [ readline ];
makeFlags = [ "prefix=$(out)" ];
passthru.updateScript = gitUpdater {
# No nicer place to track releases
url = "git://git.ghostscript.com/mujs.git";
};
meta = with lib; {
homepage = "https://mujs.com/";
description = "A lightweight, embeddable Javascript interpreter";
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
license = licenses.isc;
};
}