about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telegram
AgeCommit message (Collapse)AuthorFilesLines
2017-09-24tdesktop: 1.1.22 -> 1.1.23David Izquierdo1-5/+5
2017-08-20tdesktop: update 1.1.7 -> 1.1.19David Izquierdo1-7/+8
2017-08-01pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger2-2/+2
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
2017-06-22tdesktop: 1.0.27 -> 1.1.7David Izquierdo1-7/+18
2017-06-18qt5: remove makeQtWrapperThomas Tuegel2-9/+8
2017-06-18qt5: rename qmakeHook to qmakeThomas Tuegel3-6/+6
2017-05-11cutegram: add missing qtwebkit dependencyGabriel Ebner1-4/+3
2017-04-03tdesktop: 1.0.2 -> 1.0.27Nikolay Amiantov1-114/+62
Use system Qt.
2017-03-25cutegram: broken with Qt 5.6Thomas Tuegel1-0/+1
2017-01-31tdesktop: 1.0.0 -> 1.0.2Nikolay Amiantov1-2/+2
2017-01-12tdesktop: 0.10.19 -> 1.0.0Ignat Loskutov1-6/+6
abbradar: add vdpau to fix the build, use qt56 explicitly Closes #21821.
2016-11-24tdesktop: 0.10.1 -> 0.10.19Nikolay Amiantov1-58/+55
2016-08-14tdesktop: 0.9.56 -> 0.10.1Nikolay Amiantov1-23/+8
2016-07-23tdesktop: use parseDrvName to get Qt release versionNikolay Amiantov1-21/+2
Closes #16559
2016-06-27tdesktop: 0.9.49 -> 0.9.56Nikolay Amiantov1-9/+33
2016-06-09tdesktop: fix with new QtNikolay Amiantov1-12/+11
2016-06-03Fix lots of fetchgit hashes (fallout from #15469)Tuomas Tynkkynen2-2/+2
2016-05-26Merge branch 'master' into stagingVladimír Čunát1-4/+4
... to get the systemd update (rebuilding ~7k jobs).
2016-05-25tdesktop: 0.9.48 -> 0.9.49Rok Garbas1-4/+4
2016-05-23Merge branch 'master' into stagingVladimír Čunát1-39/+41
That's to get mesa rebuild from master, as it's nontrivial.
2016-05-20tdesktop: 0.9.44 -> 0.9.48Nikolay Amiantov1-39/+41
This package requires a ridiculous amount of time to maintain, with their build system changing from one completely ad-hoc way to another. More hacks for the throne of hacks...
2016-05-19treewide: Make explicit that 'dev' output of pango is usedTuomas Tynkkynen1-1/+1
2016-05-19treewide: Make explicit that 'dev' output of gtk2 is usedTuomas Tynkkynen1-1/+1
2016-05-19treewide: Make explicit that 'dev' output of glib is usedTuomas Tynkkynen1-1/+1
2016-05-19treewide: Make explicit that 'dev' output of gdk_pixbuf is usedTuomas Tynkkynen1-1/+1
2016-05-19treewide: Make explicit that 'dev' output of cairo is usedTuomas Tynkkynen1-1/+1
2016-05-19treewide: Make explicit that 'dev' output of atk is usedTuomas Tynkkynen1-1/+1
2016-04-30tdesktop: 0.9.33 -> 0.9.44Nikolay Amiantov1-16/+16
2016-04-25tdesktop: fix buildNikolay Amiantov1-1/+1
2016-04-20telegram-qml: move to qmakeHookNikolay Amiantov1-6/+3
This reverts commit c275fc610e087a416d018cd63ff420d724f0bbc2.
2016-04-20tdesktop: move to qmakeHookNikolay Amiantov1-5/+4
2016-04-20libqtelegram-aseman-edition: move to qmakeHookNikolay Amiantov1-7/+2
This reverts commit 080b54d766dbbcdad3cf3998585788510510cefd.
2016-04-20cutegram: move to qmakeHookNikolay Amiantov1-8/+2
This reverts commit 7f4ab1cb72cc4779b91384474b6b23e4744033d1.
2016-04-15cutegram: Fix running of {pre,post}Configureaszlig1-1/+5
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of cutegram override the whole configurePhase, so this hook isn't run at all. This fixes the build of cutegram and it now successfully compiles on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-04-15telegram-qml: Fix running of {pre,post}Configureaszlig1-0/+2
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of telegram-qml override the whole configurePhase, so this hook isn't run at all. This fixes the build of telegram-qml and it now successfully compiles on my machine. Built it using the following command, because it wasn't exposed via the top-level packages attribute: nix-build -E ' with import ./. {}; qt55.callPackage pkgs/applications/networking/instant-messengers/telegram/telegram-qml { libqtelegram-aseman-edition = qt55.callPackage pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition {}; } ' Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-04-15libqtelegram-aseman-edition: Add pre/postConfigureaszlig1-0/+2
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of libqtelegram-aseman-edition override the whole configurePhase, so this hook isn't run at all. This fixes the build of libqtelegram-aseman-edition and it now successfully compiles on my machine. Built it using the following command, because it wasn't exposed via the top-level packages attribute: nix-build -E ' with import ./. {}; qt55.callPackage pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition {} ' Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-04-14mass-replace glib and gtk lib/*/include pathsNikolay Amiantov1-2/+2
2016-04-06telegram-cli: 2015-07-30 -> 2016-03-23=1-3/+3
2016-03-30tdesktop: init at 0.9.33Nikolay Amiantov1-0/+164
2016-03-27cutegram: fix playing media filesNikolay Amiantov1-3/+8
2016-03-27cutegram: fix meta information and parallel buildingNikolay Amiantov3-5/+8
2016-03-05Cutegram: add qtimageformats (for sticker support)AndersonTorres1-5/+5
This commit adds preliminary sticker support for Cutegram.
2016-03-03cutegram: 2.7.0 -> 2.7.1AndersonTorres1-17/+23
And some minor changes
2016-03-03telegram-qml: 0.9.1 -> 0.9.2AndersonTorres1-5/+5
2016-03-03libqtelegram-aseman-edition: 6.0 -> 6.1AndersonTorres1-4/+4
2016-02-10Fix misspelled meta.maintainers attributesEelco Dolstra3-3/+3
2015-12-20telegram-qml: Qt 5 infrastructure updateThomas Tuegel1-1/+1
2015-12-20cutegram: Qt 5 infrastructure updatesThomas Tuegel1-1/+1
2015-12-17cutegram: fix version in nameProfpatsch3-3/+3
2015-12-16cutegram: init at 2.7.0-stableProfpatsch3-0/+100