mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
38 lines
922 B
Nix
38 lines
922 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, alsa-lib
|
|
, libjack2
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "asak";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chaosprint";
|
|
repo = "asak";
|
|
rev = "v${version}";
|
|
hash = "sha256-yhR8xLCFSmTG2yqsbiP3w8vcvLz4dsn4cbMPFedzUFI=";
|
|
};
|
|
|
|
cargoHash = "sha256-ssHYQhx5rNkTH6KJuJh2wPcptIcIxP8BcDNriGj3btk=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ alsa-lib libjack2 ];
|
|
|
|
# There is no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A cross-platform audio recording/playback CLI tool with TUI, written in Rust";
|
|
homepage = "https://github.com/chaosprint/asak";
|
|
changelog = "https://github.com/chaosprint/asak/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "asak";
|
|
maintainers = with lib.maintainers; [ anas ];
|
|
platforms = with lib.platforms; unix ++ windows;
|
|
};
|
|
}
|