tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lynx: 2.8.9 -> 2.9.0dev.12
Tobias Mayer
2 years ago
e510b3b2
1471dfec
+2
-10
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
lynx
default.nix
+2
-10
pkgs/applications/networking/browsers/lynx/default.nix
···
13
13
14
14
stdenv.mkDerivation rec {
15
15
pname = "lynx";
16
16
-
version = "2.8.9rel.1";
16
16
+
version = "2.9.0dev.12";
17
17
18
18
src = fetchurl {
19
19
urls = [
20
20
"ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2"
21
21
"https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2"
22
22
];
23
23
-
sha256 = "15cmyyma2kz1hfaa6mwjgli8zwdzq3jv0q2cl6nwzycjfwyijzrq";
23
23
+
hash = "sha256-pkVbFZ0Ad22OwQUShcly3B8MVS0FcaDP8Coj7BRu6OU=";
24
24
};
25
25
26
26
enableParallelBuilding = true;
27
27
28
28
hardeningEnable = [ "pie" ];
29
29
-
30
30
-
patches = [
31
31
-
(fetchpatch {
32
32
-
name = "CVE-2021-38165.patch";
33
33
-
url = "https://git.alpinelinux.org/aports/plain/main/lynx/CVE-2021-38165.patch?id=3400945dbbb8a87065360963e4caa0e17d3dcc61";
34
34
-
sha256 = "1aykb9y2g2vdpbbpvjlm4r40x7py2yv6jbywwcqcxrlciqcw4x57";
35
35
-
})
36
36
-
];
37
29
38
30
configureFlags = [
39
31
"--enable-default-colors"