evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / as / asak / package.nix
blobcd6fd83de9d8cb6bd098491658f29199d953a125
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , pkg-config
5 , alsa-lib
6 , libjack2
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "asak";
11   version = "0.3.3";
13   src = fetchFromGitHub {
14     owner = "chaosprint";
15     repo = "asak";
16     rev = "v${version}";
17     hash = "sha256-yhR8xLCFSmTG2yqsbiP3w8vcvLz4dsn4cbMPFedzUFI=";
18   };
20   cargoHash = "sha256-ssHYQhx5rNkTH6KJuJh2wPcptIcIxP8BcDNriGj3btk=";
22   nativeBuildInputs = [ pkg-config ];
24   buildInputs = [ alsa-lib libjack2 ];
26   # There is no tests
27   doCheck = false;
29   meta = {
30     description = "A cross-platform audio recording/playback CLI tool with TUI, written in Rust";
31     homepage = "https://github.com/chaosprint/asak";
32     changelog = "https://github.com/chaosprint/asak/releases/tag/v${version}";
33     license = lib.licenses.mit;
34     mainProgram = "asak";
35     maintainers = with lib.maintainers; [ anas ];
36     platforms = with lib.platforms; unix ++ windows;
37   };