nixpkgs/pkgs/development/libraries/herqq/default.nix

25 lines
625 B
Nix
Raw Normal View History

2017-09-02 04:30:01 +00:00
{ stdenv, qt5, unzip, fetchFromGitHub, qtmultimedia }:
stdenv.mkDerivation rec {
2017-09-02 04:30:01 +00:00
version = "2.1.0";
name = "herqq-${version}";
2017-09-02 04:30:01 +00:00
nativeBuildInputs = [ qt5.qmake ];
buildInputs = [ qt5.qtbase unzip qtmultimedia ];
preConfigure = "cd herqq";
2017-09-02 04:30:01 +00:00
src = fetchFromGitHub {
owner = "ThomArmax";
repo = "HUPnP";
rev = version;
sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
};
2018-03-19 21:13:24 +00:00
meta = with stdenv.lib; {
homepage = http://herqq.org;
description = "A software library for building UPnP devices and control points";
2018-03-19 21:13:24 +00:00
platforms = platforms.linux;
maintainers = [ ];
};
}