zix: init at unstable-2023-02-13

Co-authored-by: zseri <zseri.devel@ytrizja.de>
This commit is contained in:
Yuu Yin 2023-02-20 21:43:41 -03:00
parent 5648b25299
commit a3059850c5
No known key found for this signature in database
GPG key ID: 416F303B43C20AC3
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "zix";
version = "unstable-2023-02-13";
src = fetchFromGitLab {
owner = "drobilla";
repo = pname;
rev = "262d4a1522c38be0588746e874159da5c7bb457d";
hash = "sha256-3vuefgnirM4ksK3j9sjBHgOmx0JpL+6tCPb69/7jI00=";
};
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; [
yuu
zseri
];
};
}

View file

@ -24047,6 +24047,8 @@ with pkgs;
zita-resampler = callPackage ../development/libraries/audio/zita-resampler { };
zix = callPackage ../development/libraries/audio/zix { };
zz = callPackage ../development/compilers/zz { };
zziplib = callPackage ../development/libraries/zziplib { };