tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libe57format: 3.1.1 -> 3.2.0
Niklas Hambüchen
8 months ago
da48a93c
063f43f2
+4
-14
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libe57format
package.nix
+4
-14
pkgs/by-name/li/libe57format/package.nix
···
9
9
10
10
stdenv.mkDerivation (finalAttrs: {
11
11
pname = "libe57format";
12
12
-
version = "3.1.1";
12
12
+
version = "3.2.0";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "asmaloney";
16
16
repo = "libE57Format";
17
17
rev = "v${finalAttrs.version}";
18
18
-
hash = "sha256-bOuWh9Nkxva2v0M6+vnAya8EW/G3WQePxHakQt8T9NE=";
18
18
+
hash = "sha256-GyzfJshL2cOTEDp8eR0sqQq4GSnOdskiLi5mY1a2KW0=";
19
19
fetchSubmodules = true; # for submodule-vendored libraries such as `gtest`
20
20
};
21
21
···
23
23
libE57Format-test-data_src = fetchFromGitHub {
24
24
owner = "asmaloney";
25
25
repo = "libE57Format-test-data";
26
26
-
rev = "4960564a732c6444c50dfae5b2273e68837399cd";
27
27
-
hash = "sha256-k26yVbYSQJ3EMgcpjm35N1OAxarFmfMvzfTN2Hdyu8c=";
26
26
+
rev = "2171612112b06afd4fec5babe8837be69d910149";
27
27
+
hash = "sha256-JARpxp6Z2VioBfY0pZSyQU2mG/EllbaF3qteSFM9u8o=";
28
28
};
29
29
30
30
CXXFLAGS = [
31
31
# GCC 13: error: 'int16_t' has not been declared in 'std'
32
32
"-include cstdint"
33
33
-
];
34
34
-
35
35
-
patches = [
36
36
-
# TODO: Remove with the next release: https://github.com/asmaloney/libE57Format/pull/299
37
37
-
(fetchpatch {
38
38
-
name = "libE57Format-Dont-force-warnings-as-errors-when-building-self.patch"; # https://github.com/apache/thrift/pull/2726
39
39
-
url = "https://github.com/asmaloney/libE57Format/commit/66bb5af15937b4c10a7f412ca4d1673f42bbad28.patch";
40
40
-
hash = "sha256-2cNURjMLP0TijYY5gbuWLE7H/PlMW936wAeOqJ/w9C0=";
41
41
-
})
42
42
-
43
33
];
44
34
45
35
nativeBuildInputs = [