a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
30 lines
836 B
Nix
30 lines
836 B
Nix
{ stdenv, lib, fetchurl, gtk2, lv2, pkg-config, python3, serd, sord, sratom
|
|
, wafHook
|
|
, withQt5 ? true, qt5 ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "suil";
|
|
version = "0.10.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
|
sha256 = "0z4v01pjw4wh65x38w6icn28wdwxz13ayl8hvn4p1g9kmamp1z06";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wafHook python3 ];
|
|
buildInputs = [ gtk2 lv2 serd sord sratom ]
|
|
++ lib.optionals withQt5 (with qt5; [ qtbase qttools ]);
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://drobilla.net/software/suil";
|
|
description = "A lightweight C library for loading and wrapping LV2 plugin UIs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|