2017-09-03 07:58:57 +01:00
|
|
|
{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom
|
2017-02-02 05:41:23 +00:00
|
|
|
, withQt4 ? true, qt4 ? null
|
|
|
|
, withQt5 ? false, qt5 ? null }:
|
|
|
|
|
|
|
|
# I haven't found an XOR operator in nix...
|
|
|
|
assert withQt4 || withQt5;
|
|
|
|
assert !(withQt4 && withQt5);
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-02 05:41:23 +00:00
|
|
|
pname = "suil";
|
2017-12-07 12:51:57 +00:00
|
|
|
version = "0.10.0";
|
2017-02-02 05:41:23 +00:00
|
|
|
name = "${pname}-qt${if withQt4 then "4" else "5"}-${version}";
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2017-12-07 12:51:57 +00:00
|
|
|
sha256 = "0j489gm3fhnmwmbgw30bvd4byw1vsy4yazdlnji8jzhcz0qwb5cq";
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 lv2 python serd sord sratom ]
|
2017-02-02 05:41:23 +00:00
|
|
|
++ (lib.optionals withQt4 [ qt4 ])
|
|
|
|
++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ]));
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
configurePhase = "python waf configure --prefix=$out";
|
|
|
|
|
|
|
|
buildPhase = "python waf";
|
|
|
|
|
|
|
|
installPhase = "python waf install";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://drobilla.net/software/suil;
|
|
|
|
description = "A lightweight C library for loading and wrapping LV2 plugin UIs";
|
|
|
|
license = licenses.mit;
|
2017-02-02 05:41:23 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
}
|