summary refs log tree commit diff
path: root/pkgs/development/interpreters/mujs
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-01-22 11:31:27 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2015-01-22 11:31:27 +0100
commit100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab (patch)
tree6f9a171846d40b483365c4c8412669d2201a48b5 /pkgs/development/interpreters/mujs
parentdff539acd9426e7a02acf7253a4d39425e0c3ffa (diff)
downloadnixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar.gz
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar.bz2
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar.lz
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar.xz
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.tar.zst
nixpkgs-100c6e85ad54ceb9424d002a0c8aaf8e9b6ba1ab.zip
mujs: updated to latest commit
Diffstat (limited to 'pkgs/development/interpreters/mujs')
-rw-r--r--pkgs/development/interpreters/mujs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix
index e437d016fac..53ff667c8b3 100644
--- a/pkgs/development/interpreters/mujs/default.nix
+++ b/pkgs/development/interpreters/mujs/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchgit, clang }:
 
 stdenv.mkDerivation rec {
-  name = "mujs-2015-01-18";
+  name = "mujs-2015-01-22";
 
   src = fetchgit {
     url = git://git.ghostscript.com/mujs.git;
-    rev  = "b005928523d2427f8b1daac093c259ab53dba3e9";
-    sha256 = "1fgcpa0lm521nbhp7ldh515q0l8012wcfkfyiffchza2wsgmrgfj";
+    rev  = "d9ed73fd717ebbefe5595d139a133b762cea4e92";
+    sha256 = "0kg69j9ra398mdxzq34k5lv92q18g0zz5vx2wcki3qmag2rzivhr";
   };
 
   buildInputs = [ clang ];