9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "raft-canonical";
|
|
version = "0.9.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "raft";
|
|
rev = "v${version}";
|
|
sha256 = "0swn95cf11fqczllmxr0nj3ig532rw4n3w6g3ckdnqka8520xjyr";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook file pkg-config ];
|
|
buildInputs = [ libuv ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure --replace /usr/bin/ " "
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''
|
|
Fully asynchronous C implementation of the Raft consensus protocol
|
|
'';
|
|
longDescription = ''
|
|
The library has modular design: its core part implements only the core
|
|
Raft algorithm logic, in a fully platform independent way. On top of
|
|
that, a pluggable interface defines the I/O implementation for networking
|
|
(send/receive RPC messages) and disk persistence (store log entries and
|
|
snapshots).
|
|
'';
|
|
homepage = "https://github.com/canonical/raft";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
};
|
|
}
|