Skip to content

Commit 08b4d7d

Browse files
committed
rxp: 1.5.0 -> 1.5.2
- switch `src` from debian mirror to upstream url because debian does not have 1.5.2 version - update to 1.5.2, fixing build with gcc14 - remove clang specific flags as errors were fixed in new version
1 parent 9af9e6e commit 08b4d7d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

pkgs/by-name/rx/rxp/package.nix

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@
66

77
stdenv.mkDerivation rec {
88
pname = "rxp";
9-
version = "1.5.0";
9+
version = "1.5.2";
1010

1111
src = fetchurl {
12-
url = "mirror://debian/pool/main/r/rxp/rxp_${version}.orig.tar.gz";
13-
sha256 = "0y365r36wzj4xn1dzhb03spxljnrx8vwqbiwnnwz4630129gzpm6";
12+
url = "https://www.inf.ed.ac.uk/research/isddarch/admin/rxp-${version}.tar.gz";
13+
hash = "sha256-+mQbSlGF0KHZYQyCRbnVr/WXLBoooNqU8+ONafbBRRM=";
1414
};
1515

16-
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-function-declaration -Wno-error=int-conversion";
17-
1816
meta = {
1917
license = lib.licenses.gpl2Plus;
2018
description = "Validating XML parser written in C";

0 commit comments

Comments
 (0)