1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/interpreters/mujs/default.nix

24 lines
601 B
Nix
Raw Normal View History

{ stdenv, fetchgit, clang }:
stdenv.mkDerivation rec {
2016-03-01 21:06:58 +00:00
name = "mujs-2016-02-22";
src = fetchgit {
url = git://git.ghostscript.com/mujs.git;
2016-03-01 21:06:58 +00:00
rev = "624f975aae6b451e35406d8cdde808626052ce2c";
sha256 = "0cab7x73v380wklpkbrc1k4iyh4q2jyx3zxbymlfi1spmrpn6skl";
};
buildInputs = [ clang ];
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
homepage = http://mujs.com/;
description = "A lightweight, embeddable Javascript interpreter";
platforms = stdenv.lib.platforms.linux;
maintainers = with maintainers; [ pSub ];
license = licenses.gpl3;
};
}