Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
972 B
Nix
47 lines
972 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
neon,
|
|
libdiscid,
|
|
libxml2,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libmusicbrainz";
|
|
version = "5.1.0-unstable-2025-07-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "metabrainz";
|
|
repo = "libmusicbrainz";
|
|
rev = "4efbed3afae11ef68281816088d7cf3d0f704dfe";
|
|
hash = "sha256-2nMm+vm/uOT7AzTQIvfpmBsNYApZF0mekDEgt7tC6fw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
neon
|
|
libdiscid
|
|
libxml2
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://musicbrainz.org/doc/libmusicbrainz";
|
|
description = "MusicBrainz Client Library";
|
|
longDescription = ''
|
|
The libmusicbrainz (also known as mb_client or MusicBrainz Client
|
|
Library) is a development library geared towards developers who wish to
|
|
add MusicBrainz lookup capabilities to their applications.
|
|
'';
|
|
platforms = lib.platforms.all;
|
|
license = lib.licenses.lgpl21Plus;
|
|
};
|
|
}
|