1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/audio/qastools/default.nix
2020-03-30 21:15:13 +00:00

25 lines
675 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;
};
}