Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 mkDerivation, 4 fetchFromGitHub, 5 qmake, 6 qtmultimedia, 7 qtbase, 8}: 9 10mkDerivation rec { 11 version = "unstable-20-06-26"; 12 pname = "herqq"; 13 14 nativeBuildInputs = [ qmake ]; 15 buildInputs = [ 16 qtbase 17 qtmultimedia 18 ]; 19 20 outputs = [ 21 "out" 22 "dev" 23 ]; 24 25 sourceRoot = "${src.name}/herqq"; 26 src = fetchFromGitHub { 27 owner = "ThomArmax"; 28 repo = "HUPnP"; 29 rev = "c8385a8846b52def7058ae3794249d6b566a41fc"; 30 sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8="; 31 }; 32 33 meta = with lib; { 34 homepage = "http://herqq.org"; 35 description = "Software library for building UPnP devices and control points"; 36 platforms = platforms.linux; 37 maintainers = [ ]; 38 }; 39}