about summary refs log tree commit diff
path: root/pkgs/development/interpreters/mujs
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2019-01-19 12:54:53 +0000
committeradisbladis <adisbladis@gmail.com>2019-01-19 12:56:01 +0000
commitc0fcae159c45688e2452f4501eb1af42c2c7f8e9 (patch)
tree02d31c2d7f79d66fbdc75d609cdef26085a96130 /pkgs/development/interpreters/mujs
parent227104215dee4d2bb5cb2b3ffd5a6c5179735d81 (diff)
downloadnixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar.gz
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar.bz2
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar.lz
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar.xz
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.tar.zst
nixlib-c0fcae159c45688e2452f4501eb1af42c2c7f8e9.zip
mujs: 2017-01-24 -> 1.0.5
Diffstat (limited to 'pkgs/development/interpreters/mujs')
-rw-r--r--pkgs/development/interpreters/mujs/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix
index c7663a116763..5a8b78143c5e 100644
--- a/pkgs/development/interpreters/mujs/default.nix
+++ b/pkgs/development/interpreters/mujs/default.nix
@@ -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)" ];