nixpkgs/pkgs/development/libraries/herqq/default.nix
Samuel Leathers 9e50f29525
herqq: 1.0.0 -> 2.1.0
(cherry picked from commit 4151e2f579)
2017-09-05 15:27:52 +02:00

24 lines
616 B
Nix

{ stdenv, qt5, unzip, fetchFromGitHub, qtmultimedia }:
stdenv.mkDerivation rec {
version = "2.1.0";
name = "herqq-${version}";
nativeBuildInputs = [ qt5.qmake ];
buildInputs = [ qt5.qtbase unzip qtmultimedia ];
preConfigure = "cd herqq";
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 (qt5.qtbase.meta) platforms;
maintainers = [ ];
};
}