about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-24 08:00:23 +0200
committerGitHub <noreply@github.com>2023-10-24 08:00:23 +0200
commitcddf3ed1df29c9d0f4e4730cdfe6d0b7614caefb (patch)
tree77f30061ec81ba0b18c8d6c151028e860a46ce5d /pkgs/applications/emulators
parentff613be78d73d12ef7bf356e36ccbc74c3411df3 (diff)
parentac1085548ebacd98d648dba82a26a85ef4d2fbdc (diff)
Merge pull request #258922 from t4ccer/t4/fix-blink
blink: fix build
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/blink/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/emulators/blink/default.nix b/pkgs/applications/emulators/blink/default.nix
index e522546078cff..bdaf36bf6615d 100644
--- a/pkgs/applications/emulators/blink/default.nix
+++ b/pkgs/applications/emulators/blink/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, lib }:
+{ stdenv, fetchFromGitHub, fetchpatch, lib }:
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "blink";
@@ -11,6 +11,14 @@ stdenv.mkDerivation (finalAttrs: {
     hash = "sha256-W7yL7Ut3MRygJhFGr+GIj/CK57MkuDTcenft8IvH7jU=";
   };
 
+  # Drop after next release
+  patches = [
+    (fetchpatch {
+      url = "https://github.com/jart/blink/commit/b31fed832b10d32eadaec885fb20dacbb0eb6986.patch";
+      hash = "sha256-DfZxW/H58qXAjkQz31YS4SPMz7152ZzNHK7wHopgnQA=";
+    })
+  ];
+
   # 'make check' requires internet connection
   doCheck = true;
   checkTarget = "test";