herqq: 1.0.0 -> 2.1.0

This commit is contained in:
Samuel Leathers 2017-09-02 00:30:01 -04:00 committed by Robin Gloster
parent 8502d94b31
commit 4151e2f579
3 changed files with 1333 additions and 8 deletions

View File

@ -1,19 +1,24 @@
{ stdenv, fetchurl, qt4, qmake4Hook, unzip }: { stdenv, qt5, unzip, fetchFromGitHub, qtmultimedia }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "herqq-1.0.0"; version = "2.1.0";
name = "herqq-${version}";
buildInputs = [ qt4 unzip qmake4Hook ]; nativeBuildInputs = [ qt5.qmake ];
buildInputs = [ qt5.qtbase unzip qtmultimedia ];
preConfigure = "cd herqq";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/hupnp/${name}.zip"; owner = "ThomArmax";
sha256 = "13klwszi7h7mvdz2ap0ac4dp7lc0gswp8lzzlwidhqfmf9pwgkyb"; repo = "HUPnP";
rev = version;
sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
}; };
meta = { meta = {
homepage = http://herqq.org; homepage = http://herqq.org;
description = "A software library for building UPnP devices and control points"; description = "A software library for building UPnP devices and control points";
inherit (qt4.meta) platforms; inherit (qt5.qtbase.meta) platforms;
maintainers = [ ]; maintainers = [ ];
}; };
} }

File diff suppressed because it is too large Load Diff

View File

@ -8400,7 +8400,7 @@ with pkgs;
haxor-news = callPackage ../applications/misc/haxor-news { }; haxor-news = callPackage ../applications/misc/haxor-news { };
herqq = callPackage ../development/libraries/herqq { }; herqq = libsForQt5.callPackage ../development/libraries/herqq { };
heyefi = haskellPackages.heyefi; heyefi = haskellPackages.heyefi;