mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
19 lines
479 B
Nix
19 lines
479 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitea,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
name = "audio-lint";
|
|
version = lib.substring 0 8 finalAttrs.src.rev;
|
|
|
|
src = fetchFromGitea {
|
|
domain = "git.confusedcompiler.org";
|
|
owner = "leana8959";
|
|
repo = "audio-lint";
|
|
rev = "3ea38c85c5f6135958e51ad4ff13a96ccd68a21c";
|
|
hash = "sha256-h1SnWAh3FPL5GweOXVXXtp+swZApgecYaWjy7rM/J+w=";
|
|
};
|
|
|
|
cargoHash = "sha256-hsFUeGPvo3n6/Z35ui3N4qefa4odM0yo1rVBhzL3fLU=";
|
|
})
|