2017-05-30 11:05:01 +01:00
|
|
|
{ stdenv, fetchurl, python3Packages }:
|
2016-02-14 18:10:36 +00:00
|
|
|
|
2017-09-27 11:45:00 +01:00
|
|
|
let version = "1.63";
|
2017-05-30 11:05:01 +01:00
|
|
|
in python3Packages.buildPythonPackage {
|
|
|
|
name = "scudcloud-${version}";
|
2016-02-14 18:10:36 +00:00
|
|
|
|
2017-05-30 11:05:01 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
|
2017-09-27 11:45:00 +01:00
|
|
|
sha256 = "e0d1cb72115d0fda17db92d28be51558ad8fe250972683fac3086dbe8d350d22";
|
2016-02-14 18:10:36 +00:00
|
|
|
};
|
|
|
|
|
2018-12-12 00:40:28 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ pyqt5_with_qtwebkit dbus-python jsmin ];
|
2016-02-14 18:10:36 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Non-official desktop client for Slack";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/raelgc/scudcloud;
|
2016-02-14 18:10:36 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ volhovm ];
|
|
|
|
};
|
|
|
|
}
|