nixpkgs/pkgs/development/interpreters/mujs/default.nix

24 lines
567 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
pname = "mujs";
2021-12-25 19:41:09 +00:00
version = "1.2.0";
2019-01-19 12:54:53 +00:00
src = fetchurl {
url = "https://mujs.com/downloads/mujs-${version}.tar.xz";
2021-12-25 19:41:09 +00:00
sha256 = "sha256-ZpdtHgajUnVKI0Kvc9Guy7U8x82uK2jNoBO33c+SMjM=";
};
2019-01-19 12:54:53 +00:00
buildInputs = [ readline ];
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
homepage = "https://mujs.com/";
description = "A lightweight, embeddable Javascript interpreter";
2019-01-19 23:24:55 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
2021-04-15 08:18:55 +00:00
license = licenses.isc;
};
}