3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix

42 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit
, qtbase, qtmultimedia, qtquick1, qtquickcontrols
, qtimageformats, qtgraphicaleffects
, telegram-qml, libqtelegram-aseman-edition
2016-03-27 19:36:33 +01:00
, gst_all_1
, makeQtWrapper, qmakeHook }:
2015-12-13 00:26:38 +00:00
stdenv.mkDerivation rec {
name = "cutegram-${meta.version}";
src = fetchgit {
url = "https://github.com/Aseman-Land/Cutegram.git";
rev = "1dbe2792fb5a1760339379907f906e236c09db84";
sha256 = "146vd3ri05da2asxjjxibnqmb685lgwl2kaz7mwb7ja7vi4149f0";
2015-12-13 00:26:38 +00:00
};
buildInputs =
[ qtbase qtmultimedia qtquick1 qtquickcontrols
qtimageformats qtgraphicaleffects
telegram-qml libqtelegram-aseman-edition
2016-03-27 19:36:33 +01:00
] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly ]);
nativeBuildInputs = [ makeQtWrapper qmakeHook ];
2016-03-27 19:36:33 +01:00
enableParallelBuilding = true;
2015-12-13 00:26:38 +00:00
2016-03-27 19:36:33 +01:00
fixupPhase = ''
wrapQtProgram $out/bin/cutegram \
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
'';
2015-12-13 00:26:38 +00:00
meta = with stdenv.lib; {
version = "2.7.1";
2015-12-13 00:26:38 +00:00
description = "Telegram client forked from sigram";
homepage = "http://aseman.co/en/products/cutegram/";
license = licenses.gpl3;
maintainers = with maintainers; [ profpatsch AndersonTorres ];
platforms = platforms.linux;
2015-12-13 00:26:38 +00:00
};
}
#TODO: appindicator, for system tray plugin (by @profpatsch)