2016-02-14 18:10:36 +00:00
|
|
|
{ stdenv, fetchgit, python3Packages }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonPackage {
|
2017-03-10 10:33:23 +00:00
|
|
|
name = "scudcloud-1.44";
|
2016-02-14 18:10:36 +00:00
|
|
|
|
2016-12-21 07:39:05 +00:00
|
|
|
# Branch 254-port-to-qt5
|
2017-03-10 10:33:23 +00:00
|
|
|
# https://github.com/raelgc/scudcloud/commit/65c304416dfdd5f456fa6f7301432a953d5e12d0
|
2016-02-14 18:10:36 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/raelgc/scudcloud/;
|
2017-03-10 10:33:23 +00:00
|
|
|
rev = "65c304416dfdd5f456fa6f7301432a953d5e12d0";
|
|
|
|
sha256 = "0h1055y88kldqw31ayqfx9zsksgxsyqd8h0hwnhj80yn3jcx0rp6";
|
2016-02-14 18:10:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Non-official desktop client for Slack";
|
|
|
|
homepage = "https://github.com/raelgc/scudcloud";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ volhovm ];
|
|
|
|
};
|
|
|
|
}
|