Skip to content

Commit e467148

Browse files
committed
librseq: 0.1.0pre54 -> 0.1.0pre70
This also enables the rseq test suite, which requires kernel support on the host executing the tests. `rseq(2)` has been available in mainline since 4.18 (resp. LTS availability since 4.19) but the test suite should gracefully exit otherwise if it's not supported. Signed-off-by: Austin Seipp <aseipp@pobox.com>
1 parent c557ea5 commit e467148

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

pkgs/development/libraries/librseq/default.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@
44

55
stdenv.mkDerivation rec {
66
pname = "librseq";
7-
version = "0.1.0pre54_${builtins.substring 0 7 src.rev}";
7+
version = "0.1.0pre70_${builtins.substring 0 7 src.rev}";
88

99
src = fetchFromGitHub {
1010
owner = "compudj";
1111
repo = "librseq";
12-
rev = "152600188dd214a0b2c6a8c66380e50c6ad27154";
13-
sha256 = "0mivjmgdkgrr6z2gz3k6q6wgnvyvw9xzy65f6ipvqva68sxhk0mx";
12+
rev = "d1cdec98d476b16ca5e2d9d7eabcf9f1c97e6111";
13+
sha256 = "0vgillrxc1knq591gjj99x2ws6q1xpm5dmfrhsxisngfpcnjr10v";
1414
};
1515

1616
outputs = [ "out" "dev" ];
1717
nativeBuildInputs = [ autoreconfHook ];
1818
buildInputs = [ linuxHeaders ];
1919

20+
doCheck = true;
2021
separateDebugInfo = true;
2122
enableParallelBuilding = true;
2223

24+
patchPhase = ''
25+
patchShebangs tests
26+
'';
27+
2328
# The share/ subdir only contains a doc/ with a README.md that just describes
2429
# how to compile the library, which clearly isn't very useful! So just get
2530
# rid of it anyway.

0 commit comments

Comments
 (0)