nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / tools / audio / qastools / default.nix
blob37af3d9e7a61fdee4b10b1344cc652d3a697e730
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   cmake,
6   alsa-lib,
7   udev,
8   qtbase,
9   qtsvg,
10   qttools,
13 mkDerivation rec {
14   pname = "qastools";
15   version = "0.23.0";
17   src = fetchFromGitLab {
18     owner = "sebholt";
19     repo = pname;
20     rev = "v${version}";
21     sha256 = "19hn64hnvryfmrkdg6rqyzahdbqf1s5y3dcca389jj6sdx93b3ip";
22   };
24   nativeBuildInputs = [ cmake ];
25   buildInputs = [
26     alsa-lib
27     udev
28     qtbase
29     qtsvg
30     qttools
31   ];
33   meta = with lib; {
34     description = "Collection of desktop applications for ALSA configuration";
35     homepage = "https://gitlab.com/sebholt/qastools";
36     license = licenses.mit;
37     maintainers = with maintainers; [ orivej ];
38     platforms = platforms.linux;
39   };