mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
25 lines
616 B
Nix
25 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 = [ ];
|
|
};
|
|
}
|