qastools: 0.21.0 -> 0.22.0
This commit is contained in:
parent
b310f564c2
commit
2f8795d32a
@ -1,30 +1,24 @@
|
|||||||
{ mkDerivation, lib, fetchurl, cmake, alsaLib, udev, qtbase, qtsvg, qttools }:
|
{ mkDerivation, lib, fetchFromGitLab, cmake, alsaLib, udev, qtbase, qtsvg, qttools }:
|
||||||
|
|
||||||
let
|
mkDerivation rec {
|
||||||
version = "0.21.0";
|
|
||||||
in
|
|
||||||
|
|
||||||
mkDerivation {
|
|
||||||
pname = "qastools";
|
pname = "qastools";
|
||||||
inherit version;
|
version = "0.22.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitLab {
|
||||||
url = "mirror://sourceforge/project/qastools/${version}/qastools_${version}.tar.bz2";
|
owner = "sebholt";
|
||||||
sha256 = "1zl9cn5h43n63yp3z1an87xvw554k9hlcz75ddb30lvpcczkmwrh";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0px4fcn8dagivq5fyi5gy84yj86f6x0lk805mc4ry58d0wsbn68v";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
alsaLib udev qtbase qtsvg qttools
|
|
||||||
];
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ alsaLib udev qtbase qtsvg qttools ];
|
||||||
cmakeFlags = [
|
|
||||||
"-DALSA_INCLUDE=${alsaLib.dev}/include/alsa/version.h"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Collection of desktop applications for ALSA configuration";
|
description = "Collection of desktop applications for ALSA configuration";
|
||||||
license = licenses.gpl3;
|
homepage = https://gitlab.com/sebholt/qastools;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user