forked from mirrors/nixpkgs
f2a20b6e52
Replace "waf" phases with wafHook that manages everything automatically. Should make things more modular. Packages affected here are: - a2jmidid - ams-lv2 - ardour - fomp - guitarix - ingen - jalv - mda-lv2 - non - patchage - hamster-time-tracker - kupfer - xiphos - xfce4-dockbarx-plugin - xfce4-namebar-plugin - dropbox - clasp - aubio - liliv - lv2 - lvtk - ntk - raul - sratom - suil - ganv - ndn-cxx - ns3 - serd - sord - termbox - wxmupen64plus - jackaudio - pflask - blockhash - glmark2 - weighttp
33 lines
1 KiB
Nix
33 lines
1 KiB
Nix
{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom
|
|
, wafHook
|
|
, withQt4 ? true, qt4 ? null
|
|
, withQt5 ? false, qt5 ? null }:
|
|
|
|
# I haven't found an XOR operator in nix...
|
|
assert withQt4 || withQt5;
|
|
assert !(withQt4 && withQt5);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "suil";
|
|
version = "0.10.0";
|
|
name = "${pname}-qt${if withQt4 then "4" else "5"}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
|
sha256 = "0j489gm3fhnmwmbgw30bvd4byw1vsy4yazdlnji8jzhcz0qwb5cq";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
|
buildInputs = [ gtk2 lv2 python serd sord sratom ]
|
|
++ (lib.optionals withQt4 [ qt4 ])
|
|
++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ]));
|
|
|
|
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;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|