about summary refs log tree commit diff
path: root/pkgs/development/interpreters/mujs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-04-10 14:35:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2023-04-10 14:35:00 -0500
commitcd4ba7172bcc3a458c0410e1006fb10f8bac533e (patch)
tree8c53798eb2a0c5175ecfbc779a5b9a3430022c2b /pkgs/development/interpreters/mujs
parent23e55a367ef5717849d617728fc540a91dc305a2 (diff)
mujs: fix build on darwin
MuJS 1.3.3 made the Darwin patch obsolete, and seems that it can build
on Darwin without it.
Diffstat (limited to 'pkgs/development/interpreters/mujs')
-rw-r--r--pkgs/development/interpreters/mujs/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix
index 319e039f5c59c..881d0bbf1b465 100644
--- a/pkgs/development/interpreters/mujs/default.nix
+++ b/pkgs/development/interpreters/mujs/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchurl
-, fetchpatch
 , readline
 , gitUpdater
 }:
@@ -15,16 +14,6 @@ stdenv.mkDerivation rec {
     hash = "sha256-4sXuVBbf2iIwx6DLeJXfmpstWyBluxjn5k3sKnlqvhs=";
   };
 
-  patches = lib.optionals stdenv.isDarwin [
-    (fetchpatch {
-      # ld: library not found for -l:libmujs.a
-      name = "darwin-failures.patch";
-      url = "https://git.ghostscript.com/?p=mujs.git;a=patch;h=d592c785c0b2f9fea982ac3fe7b88fdd7c4817fc";
-      sha256 = "sha256-/57A7S65LWZFyQIGe+LtqDMu85K1N/hbztXB+/nCDJk=";
-      revert = true;
-    })
-  ];
-
   buildInputs = [ readline ];
 
   makeFlags = [ "prefix=$(out)" ];