nixpkgs/pkgs/applications/misc/kord/default.nix
Manuel Frischknecht c5bfa2626e kord: fix build due to changed compiler features
The rust feature `no_coverage` has been replaced by one called
`coverage_attribute` (and respective `#[no_coverage]` declarations
must now be annotated as `#[coverage(off)]`. Because of this, the
build of `kord` fails on current versions of the Rust compiler.

Upstream has already resolved these issues [1], but there haven't
been any new releases since these fixes have been committed to
trunk. This change pulls the respective patch in using `fetchpatch`
for now -- this patch should be removable with the next release.

[1]: fa9bb979b1
2024-02-27 21:57:11 +00:00

56 lines
1.5 KiB
Nix

{ lib
, stdenv
, darwin
, fetchFromGitHub
, fetchpatch
, rustPlatform
, pkg-config
, alsa-lib
}:
rustPlatform.buildRustPackage rec {
pname = "kord";
version = "0.6.1";
# kord depends on nightly features
RUSTC_BOOTSTRAP = 1;
src = fetchFromGitHub {
owner = "twitchax";
repo = "kord";
rev = "v${version}";
sha256 = "sha256-CeMh6yB4fGoxtGLbkQe4OMMvBM0jesyP+8JtU5kCP84=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"bincode-2.0.0-rc.2" = "sha256-0BfKKGOi5EVIoF0HvIk0QS2fHUMG3tpsMLe2SkXeZlo=";
};
};
patches = [
# Fixes build issues due to refactored Rust compiler feature annotations.
# Should be removable with the next release after v. 0.6.1.
(fetchpatch {
name = "fix-rust-features.patch";
url = "https://github.com/twitchax/kord/commit/fa9bb979b17d77f54812a915657c3121f76c5d82.patch";
hash = "sha256-XQu9P7372J2dHWzvpvbPtALS0Bh8EC+J1EyG3qlak2M=";
excludes = [ "Cargo.*" ];
})
];
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
buildInputs = lib.optionals stdenv.isLinux [ alsa-lib ]
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.AudioUnit ];
meta = with lib; {
description = "A music theory binary and library for Rust";
homepage = "https://github.com/twitchax/kord";
maintainers = with maintainers; [ kidsan ];
license = with licenses; [ mit ];
};
}