nixpkgs/pkgs/applications/networking/instant-messengers/scudcloud/default.nix

22 lines
652 B
Nix
Raw Normal View History

2017-05-30 10:05:01 +00:00
{ stdenv, fetchurl, python3Packages }:
2017-09-27 10:45:00 +00:00
let version = "1.63";
2017-05-30 10:05:01 +00:00
in python3Packages.buildPythonPackage {
name = "scudcloud-${version}";
2017-05-30 10:05:01 +00:00
src = fetchurl {
url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
2017-09-27 10:45:00 +00:00
sha256 = "e0d1cb72115d0fda17db92d28be51558ad8fe250972683fac3086dbe8d350d22";
};
propagatedBuildInputs = with python3Packages; [ pyqt5 dbus-python jsmin ];
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 ];
};
}