mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, 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=";
|
|
};
|
|
|
|
patches = [
|
|
# clang-16 support on Darwin:
|
|
# https://gitlab.com/drobilla/zix/-/issues/3
|
|
(fetchpatch {
|
|
name = "darwin-sync.patch";
|
|
url = "https://gitlab.com/drobilla/zix/-/commit/a6f804073de1f1e626464a9dd0a169fd3f69fdff.patch";
|
|
hash = "sha256-ZkDPjtUzIyqnYarQR+7aCj7S/gSngbd6d75aRT+h7Ww=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dbenchmarks=disabled"
|
|
"-Ddocs=disabled"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
};
|
|
}
|