depot/third_party/nixpkgs/pkgs/tools/audio/qastools/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
677 B
Nix

{ 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;
};
}