Add kde4.telepathy.call_ui

Very experimental, fails to build (missing deps)

svn path=/nixpkgs/trunk/; revision=33077
This commit is contained in:
Yury G. Kudryashov 2012-03-14 19:35:30 +00:00
parent 6d2a78fc40
commit 7a31872261

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, telepathy_qt, kdelibs, gettext, pkgconfig }:
{ stdenv, fetchurl, fetchgit, telepathy_qt, kdelibs, gettext, pkgconfig }:
let
version = "0.3.0";
@ -27,10 +27,25 @@ let
);
};
pkgs = builtins.listToAttrs (map ktpFun manifest);
stable = builtins.listToAttrs (map ktpFun manifest);
unstable = {
call_ui = stdenv.mkDerivation {
name = "ktp-call-ui-20120314";
src = fetchgit {
url = git://anongit.kde.org/ktp-call-ui;
rev = "3587166d1ace83b115e113853514a7acc04d9d86";
sha256 = "0yv386rqy4vkwmd38wvvsrbam59sbv5k2lwimv96kf93xgkp5g0l";
};
buildInputs = [ kdelibs telepathy_qt common_internals ];
buildNativeInputs = [ gettext pkgconfig ];
};
};
common_internals = pkgs.common_internals;
pkgs = unstable // stable;
in
pkgs //{
pkgs // {
inherit version;
recurseForDerivations = true;
full = stdenv.lib.attrValues pkgs;