tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libbluray: backport bugfix
Gauvain 'GovanifY' Roussel-Tarbouriech
3 years ago
e94c6708
d9a636e9
+11
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libbluray
default.nix
+11
-1
pkgs/development/libraries/libbluray/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, pkg-config, fontconfig, autoreconfHook, DiskArbitration
1
1
+
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, fontconfig, autoreconfHook, DiskArbitration
2
2
, withJava ? false, jdk, ant
3
3
, withAACS ? false, libaacs
4
4
, withBDplus ? false, libbdplus
···
20
20
21
21
patches = [
22
22
./BDJ-JARFILE-path.patch
23
23
+
(fetchpatch {
24
24
+
name = "Initial-support-for-Java-18.patch";
25
25
+
url = "https://code.videolan.org/videolan/libbluray/-/commit/3187c3080096e107f0a27eed1843232b58342577.patch";
26
26
+
hash = "sha256-2TSciAoPzELkgmFGB38h1RgynOCJueyCL8hIADxAPHo=";
27
27
+
})
28
28
+
(fetchpatch {
29
29
+
name = "bd-j-BDJSecurityManager-Change-setSecurityManager-de.patch";
30
30
+
url = "https://code.videolan.org/videolan/libbluray/-/commit/9a2d23d049760ef9cc9661ff90011a84d90368f1.patch";
31
31
+
hash = "sha256-xCc2h5ocXCqnpVMPQaybT2Ncs2YOzifQ0mlCCUhYlc8=";
32
32
+
})
23
33
];
24
34
25
35
nativeBuildInputs = [ pkg-config autoreconfHook ]