mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +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.
56 lines
1.5 KiB
Nix
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.hostPlatform.isLinux [ pkg-config ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ rustPlatform.bindgenHook ];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.AudioUnit ];
|
|
|
|
meta = with lib; {
|
|
description = "Music theory binary and library for Rust";
|
|
homepage = "https://github.com/twitchax/kord";
|
|
maintainers = with maintainers; [ kidsan ];
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|