Merge pull request #258922 from t4ccer/t4/fix-blink

blink: fix build
This commit is contained in:
Weijia Wang 2023-10-24 08:00:23 +02:00 committed by GitHub
commit cddf3ed1df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";