96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
30 lines
642 B
Nix
30 lines
642 B
Nix
{ stdenv, fetchurl, qt4, cmake }:
|
|
|
|
let
|
|
baseName = "libdbusmenu-qt";
|
|
v = "0.9.2";
|
|
homepage = "http://launchpad.net/${baseName}";
|
|
name = "${baseName}-${v}";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "${homepage}/trunk/${v}/+download/${name}.tar.bz2";
|
|
sha256 = "1v0ri5g9xw2z64ik0kx0ra01v8rpjn2kxprrxppkls1wvav1qv5f";
|
|
};
|
|
|
|
buildInputs = [ qt4 ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = "-DWITH_DOC=OFF";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Provides a Qt implementation of the DBusMenu spec";
|
|
inherit homepage;
|
|
maintainers = [ ];
|
|
inherit (qt4.meta) platforms;
|
|
};
|
|
}
|