at 15.09-beta 21 lines 537 B view raw
1{ stdenv, fetchurl, qt4, unzip }: 2 3stdenv.mkDerivation rec { 4 name = "herqq-1.0.0"; 5 6 buildInputs = [ qt4 unzip ]; 7 8 configurePhase = "qmake PREFIX=$out herqq.pro"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/hupnp/${name}.zip"; 12 sha256 = "13klwszi7h7mvdz2ap0ac4dp7lc0gswp8lzzlwidhqfmf9pwgkyb"; 13 }; 14 15 meta = { 16 homepage = http://herqq.org; 17 description = "A software library for building UPnP devices and control points"; 18 inherit (qt4.meta) platforms; 19 maintainers = [ stdenv.lib.maintainers.urkud ]; 20 }; 21}