pkgs/pacemaker: 2.0.9 -> 2.1.1

This commit is contained in:
Astro 2021-11-20 18:11:02 +01:00
parent 8a90239a96
commit 52c638b98f
1 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,7 @@
{ lib { lib
, stdenv , stdenv
, autoreconfHook , autoconf
, automake
, bash , bash
, bzip2 , bzip2
, corosync , corosync
@ -27,17 +28,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pacemaker"; pname = "pacemaker";
version = "2.0.5"; version = "2.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ClusterLabs"; owner = "ClusterLabs";
repo = pname; repo = pname;
rev = "Pacemaker-${version}"; rev = "Pacemaker-${version}";
sha256 = "1wrdqdxbdl506ry6i5zqwmf66ms96hx2h6rn4jzpi5w13wg8sbm4"; sha256 = "0grzw3yv6l8l83pi0pdn1fps3qh7hk3fl2xbv3vx1ixri29m3438";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
autoreconfHook autoconf
automake
libtool libtool
pkg-config pkg-config
]; ];
@ -57,6 +59,8 @@ stdenv.mkDerivation rec {
python3 python3
]; ];
preConfigure = "./autogen.sh";
configureFlags = [ configureFlags = [
"--exec-prefix=${placeholder "out"}" "--exec-prefix=${placeholder "out"}"
"--sysconfdir=/etc" "--sysconfdir=/etc"