mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, lib, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom
|
|
, 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 = "http://download.drobilla.net/${pname}-${version}.tar.bz2";
|
|
sha256 = "0j489gm3fhnmwmbgw30bvd4byw1vsy4yazdlnji8jzhcz0qwb5cq";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk2 lv2 python serd sord sratom ]
|
|
++ (lib.optionals withQt4 [ qt4 ])
|
|
++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ]));
|
|
|
|
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;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|