47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
withOpenCL ? true,
|
|
stdenv,
|
|
ocl-icd,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "lucky-commit";
|
|
version = "2.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "not-an-aardvark";
|
|
repo = "lucky-commit";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-pghc2lTI81/z1bPJ6P2bFPyZkM8pko0V7lqv9rUUxWM=";
|
|
};
|
|
|
|
cargoHash = "sha256-zuWPkaYltxOOLaR6NTVkf1WbKzUQByml45jNL+e5UJ0=";
|
|
|
|
# LLVM Apple assembler rejects `:lo12:` combined with `@PAGEOFF`.
|
|
postPatch = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) ''
|
|
substituteInPlace "$cargoDepsCopy"/*/sha1-asm-*/src/aarch64_apple.S \
|
|
--replace-fail "#:lo12:.K0@PAGEOFF" ".K0@PAGEOFF" \
|
|
--replace-fail "#:lo12:.K1@PAGEOFF" ".K1@PAGEOFF" \
|
|
--replace-fail "#:lo12:.K2@PAGEOFF" ".K2@PAGEOFF" \
|
|
--replace-fail "#:lo12:.K3@PAGEOFF" ".K3@PAGEOFF"
|
|
'';
|
|
|
|
buildInputs = lib.optional (withOpenCL && (!stdenv.hostPlatform.isDarwin)) ocl-icd;
|
|
|
|
buildNoDefaultFeatures = !withOpenCL;
|
|
|
|
# disable tests that require gpu
|
|
checkNoDefaultFeatures = true;
|
|
|
|
meta = {
|
|
description = "Change the start of your git commit hashes to whatever you want";
|
|
homepage = "https://github.com/not-an-aardvark/lucky-commit";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ iamanaws ];
|
|
mainProgram = "lucky_commit";
|
|
};
|
|
})
|