2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
42 lines
791 B
Nix
42 lines
791 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zix";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "drobilla";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-nMm3Mdqc4ncCae8SoyGxZYURzmXLNcp1GjsSExfB6x4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dbenchmarks=disabled"
|
|
"-Ddocs=disabled"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight C99 portability and data structure library";
|
|
homepage = "https://gitlab.com/drobilla/zix";
|
|
changelog = "https://gitlab.com/drobilla/zix/-/blob/${src.rev}/NEWS";
|
|
license = licenses.isc;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [
|
|
fogti
|
|
yuu
|
|
];
|
|
};
|
|
}
|