libfsm: 0.1pre2442 -> 0.1pre2987

Update to fix compatibility with modern `bmake`.
While at it disabled parallel building to workaround install failures.

ZHF: #230712
This commit is contained in:
Sergei Trofimovich 2023-05-10 08:29:16 +01:00
parent 326bad7af5
commit 98fc22f4f0

View file

@ -1,21 +1,30 @@
{ lib, stdenv, fetchFromGitHub { lib
, stdenv
, fetchFromGitHub
, bmake , bmake
, docbook_xsl
, libxslt
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libfsm"; pname = "libfsm";
version = "0.1pre2442_${builtins.substring 0 8 src.rev}"; version = "0.1pre2987_${builtins.substring 0 8 src.rev}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "katef"; owner = "katef";
repo = pname; repo = pname;
rev = "9c5095f7364fa464efff6c81fad9b60b19dfcc99"; rev = "087e3389ad2cd5e5c40caeb40387e632567d7258";
sha256 = "1bs51agvrrwqid0slq2svj2yj7kkjdsnv3xsrk8zmf1jbgza6jrm"; hash = "sha256-XWrZxnRbMB609l+sYFf8VsXy3NxqBsBPUrHgKLIyu/I=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ bmake ]; nativeBuildInputs = [
bmake
docbook_xsl
libxslt # xsltproc
];
enableParallelBuilding = true; enableParallelBuilding = true;
enableParallelInstalling = false;
# note: build checks value of '$CC' to add some extra cflags, but we don't # note: build checks value of '$CC' to add some extra cflags, but we don't
# necessarily know which 'stdenv' someone chose, so we leave it alone (e.g. # necessarily know which 'stdenv' someone chose, so we leave it alone (e.g.