mujs: 2017-01-24 -> 1.0.5

This commit is contained in:
adisbladis 2019-01-19 12:54:53 +00:00
parent 227104215d
commit c0fcae159c
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -1,15 +1,15 @@
{ stdenv, fetchgit, clang }:
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
name = "mujs-2017-01-24";
name = "mujs-${version}";
version = "1.0.5";
src = fetchgit {
url = git://git.ghostscript.com/mujs.git;
rev = "4006739a28367c708dea19aeb19b8a1a9326ce08";
sha256 = "0wvjl8lkh0ga6fkmxgjqq77yagncbv1bdy6hpnxq31x3mkwn1s51";
src = fetchurl {
url = "https://mujs.com/downloads/mujs-${version}.tar.xz";
sha256 = "02cqrfnww2s3ylcvqin1951f2c5nzpby8gxb207p2hbrivbg8f0l";
};
buildInputs = [ clang ];
buildInputs = [ readline ];
makeFlags = [ "prefix=$(out)" ];