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