Skip to content

Commit

Permalink
herqq: 1.0.0 -> 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Leathers authored and globin committed Sep 5, 2017
1 parent 8502d94 commit 4151e2f
Show file tree
Hide file tree
Showing 3 changed files with 1,333 additions and 8 deletions.
19 changes: 12 additions & 7 deletions pkgs/development/libraries/herqq/default.nix
@@ -1,19 +1,24 @@
{ stdenv, fetchurl, qt4, qmake4Hook, unzip }:
{ stdenv, qt5, unzip, fetchFromGitHub, qtmultimedia }:

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 {
url = "mirror://sourceforge/hupnp/${name}.zip";
sha256 = "13klwszi7h7mvdz2ap0ac4dp7lc0gswp8lzzlwidhqfmf9pwgkyb";
src = fetchFromGitHub {
owner = "ThomArmax";
repo = "HUPnP";
rev = version;
sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
};

meta = {
homepage = http://herqq.org;
description = "A software library for building UPnP devices and control points";
inherit (qt4.meta) platforms;
inherit (qt5.qtbase.meta) platforms;
maintainers = [ ];
};
}

0 comments on commit 4151e2f

Please sign in to comment.