tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
blink: fix build
t4ccer
2 years ago
ac108554
37601de9
+9
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
emulators
blink
default.nix
+9
-1
pkgs/applications/emulators/blink/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub, lib }:
1
1
+
{ stdenv, fetchFromGitHub, fetchpatch, lib }:
2
2
3
3
stdenv.mkDerivation (finalAttrs: {
4
4
pname = "blink";
···
10
10
rev = finalAttrs.version;
11
11
hash = "sha256-W7yL7Ut3MRygJhFGr+GIj/CK57MkuDTcenft8IvH7jU=";
12
12
};
13
13
+
14
14
+
# Drop after next release
15
15
+
patches = [
16
16
+
(fetchpatch {
17
17
+
url = "https://github.com/jart/blink/commit/b31fed832b10d32eadaec885fb20dacbb0eb6986.patch";
18
18
+
hash = "sha256-DfZxW/H58qXAjkQz31YS4SPMz7152ZzNHK7wHopgnQA=";
19
19
+
})
20
20
+
];
13
21
14
22
# 'make check' requires internet connection
15
23
doCheck = true;