nixpkgs/pkgs/tools/audio/qastools/default.nix

25 lines
677 B
Nix
Raw Normal View History

2020-03-30 20:31:18 +00:00
{ mkDerivation, lib, fetchFromGitLab, cmake, alsaLib, udev, qtbase, qtsvg, qttools }:
2015-01-05 20:32:48 +00:00
2020-03-30 20:31:18 +00:00
mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "qastools";
2020-07-07 05:26:12 +00:00
version = "0.23.0";
2015-01-05 20:32:48 +00:00
2020-03-30 20:31:18 +00:00
src = fetchFromGitLab {
owner = "sebholt";
repo = pname;
rev = "v${version}";
2020-07-07 05:26:12 +00:00
sha256 = "19hn64hnvryfmrkdg6rqyzahdbqf1s5y3dcca389jj6sdx93b3ip";
2015-01-05 20:32:48 +00:00
};
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ cmake ];
2020-03-30 20:31:18 +00:00
buildInputs = [ alsaLib udev qtbase qtsvg qttools ];
2015-01-05 20:32:48 +00:00
2017-05-17 19:26:11 +00:00
meta = with lib; {
2015-01-05 20:32:48 +00:00
description = "Collection of desktop applications for ALSA configuration";
homepage = "https://gitlab.com/sebholt/qastools";
2020-03-30 20:31:18 +00:00
license = licenses.mit;
maintainers = with maintainers; [ orivej ];
2015-01-05 20:32:48 +00:00
platforms = platforms.linux;
};
}