aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/audio/qastools/default.nix
blob: 86ef7f050b23e1c2a5920600ea1ca4a2b05cd1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ mkDerivation, lib, fetchFromGitLab, cmake, alsaLib, udev, qtbase, qtsvg, qttools }:

mkDerivation rec {
  pname = "qastools";
  version = "0.22.0";

  src = fetchFromGitLab {
    owner = "sebholt";
    repo = pname;
    rev = "v${version}";
    sha256 = "0px4fcn8dagivq5fyi5gy84yj86f6x0lk805mc4ry58d0wsbn68v";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ alsaLib udev qtbase qtsvg qttools ];

  meta = with lib; {
    description = "Collection of desktop applications for ALSA configuration";
    homepage = "https://gitlab.com/sebholt/qastools";
    license = licenses.mit;
    maintainers = with maintainers; [ orivej ];
    platforms = platforms.linux;
  };
}