96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
20 lines
480 B
Nix
20 lines
480 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "herqq-1.0.0";
|
|
|
|
buildInputs = [ qt4 unzip qmake4Hook ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/hupnp/${name}.zip";
|
|
sha256 = "13klwszi7h7mvdz2ap0ac4dp7lc0gswp8lzzlwidhqfmf9pwgkyb";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://herqq.org;
|
|
description = "A software library for building UPnP devices and control points";
|
|
inherit (qt4.meta) platforms;
|
|
maintainers = [ ];
|
|
};
|
|
}
|