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

24 lines
578 B
Nix
Raw Normal View History

2019-01-19 12:54:53 +00:00
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
2019-01-19 12:54:53 +00:00
name = "mujs-${version}";
version = "1.0.5";
2019-01-19 12:54:53 +00:00
src = fetchurl {
url = "https://mujs.com/downloads/mujs-${version}.tar.xz";
sha256 = "02cqrfnww2s3ylcvqin1951f2c5nzpby8gxb207p2hbrivbg8f0l";
};
2019-01-19 12:54:53 +00:00
buildInputs = [ readline ];
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
homepage = http://mujs.com/;
description = "A lightweight, embeddable Javascript interpreter";
2019-01-19 23:24:55 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
license = licenses.gpl3;
};
}