5bc4f028ee
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dqlite/versions
28 lines
743 B
Nix
28 lines
743 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libuv, sqlite-replication }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dqlite-${version}";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CanonicalLtd";
|
|
repo = "dqlite";
|
|
rev = "v${version}";
|
|
sha256 = "0pv7nf4siijlcy5asrl8j1ib3viifk65yzqzckarm2mcl16y7fc3";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ libuv sqlite-replication ];
|
|
|
|
meta = {
|
|
description = "Expose a SQLite database over the network and replicate it across a cluster of peers";
|
|
homepage = https://github.com/CanonicalLtd/dqlite/;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ joko ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|