unityhub: 3.10.0 -> 3.11.0 (#376840)
[NixPkgs.git] / pkgs / by-name / ch / chromatic / package.nix
blob32a518b36ce99bb4cd80d0d4896b715ea76321eb
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   rustPlatform,
6   meson,
7   ninja,
8   pkg-config,
9   rustc,
10   cargo,
11   wrapGAppsHook4,
12   desktop-file-utils,
13   libxml2,
14   libadwaita,
15   portaudio,
16   libpulseaudio,
19 stdenv.mkDerivation rec {
20   pname = "chromatic";
21   version = "0-unstable-2023-08-05";
23   src = fetchFromGitHub {
24     owner = "nate-xyz";
25     repo = "chromatic";
26     rev = "ffaeb50dcce74bf3ba1b05f98423cf48f205f55e";
27     hash = "sha256-E3v3UoQumBBYDOiXMfCRh5J7bfUCkettHth7SAresCE=";
28   };
30   patches = [
31     # solve error[E0310]: the parameter type `T` may not live long enough
32     # in rust-serialize crate
33     ./rustc_serialize_update.patch
34   ];
36   cargoDeps = rustPlatform.fetchCargoTarball {
37     inherit src;
38     name = "${pname}-${version}";
39     patches = [ ./rustc_serialize_update.patch ];
40     hash = "sha256-1Zb0J2tO/gIifDymmoXxZf6RNV8foE9QiQqZcrHrWzE=";
41   };
43   nativeBuildInputs = [
44     meson
45     ninja
46     pkg-config
47     rustPlatform.cargoSetupHook
48     rustc
49     cargo
50     wrapGAppsHook4
51     desktop-file-utils
52     libxml2.bin # xmllint
53   ];
55   buildInputs = [
56     libadwaita
57     portaudio
58     libpulseaudio
59   ];
61   meta = with lib; {
62     description = "Fine-tune your instruments";
63     longDescription = ''
64       Fine-tune your instruments with Chromatic. Chromatic
65       detects the frequency of audio input, converts it to
66       a musical note with the correct semitone and octave,
67       and displays the cents error. Cents are displayed on
68       an analog gauge to make tuning more visually intuitive.
69       Requires PulseAudio or PipeWire.
70     '';
71     homepage = "https://github.com/nate-xyz/chromatic";
72     license = licenses.gpl3Plus;
73     mainProgram = "chromatic";
74     maintainers = with maintainers; [ aleksana ];
75     platforms = platforms.linux;
76   };