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

22 lines
634 B
Nix
Raw Normal View History

2017-05-30 11:05:01 +01:00
{ stdenv, fetchurl, python3Packages }:
2017-05-30 11:05:01 +01:00
let version = "1.58";
in python3Packages.buildPythonPackage {
name = "scudcloud-${version}";
2017-05-30 11:05:01 +01:00
src = fetchurl {
url = "https://github.com/raelgc/scudcloud/archive/v${version}.tar.gz";
sha256 = "1j84qdc2j3dvl1nhrjqm0blc8ww723p9a6hqprkkp8alw77myq1l";
};
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 ];
};
}