nixpkgs/pkgs/desktops/kde-4.4/support/decibel/default.nix
Sander van der Burg bcb6e407ea Added my initial KDE 4.4 expression
svn path=/nixpkgs/trunk/; revision=19906
2010-02-10 15:06:50 +00:00

17 lines
517 B
Nix

{stdenv, fetchurl, lib, cmake, qt4, tapioca_qt, telepathy_qt}:
stdenv.mkDerivation {
name = "decibel-0.5.0";
src = fetchurl {
url = http://decibel.kde.org/fileadmin/downloads/decibel/releases/decibel-0.5.0.tar.gz;
md5 = "7de299ace568c87a746388ad765228e5";
};
buildInputs = [ cmake qt4 tapioca_qt telepathy_qt ];
meta = {
description = "Realtime communications framework for KDE";
license = "LGPL";
homepage = http://decibel.kde.org;
maintainers = [ lib.maintainers.sander ];
};
}