about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/scudcloud
diff options
context:
space:
mode:
authorMikhail Volkhov <volhovm.cs@gmail.com>2016-02-14 21:10:36 +0300
committerMikhail Volkhov <volhovm.cs@gmail.com>2016-10-19 18:45:31 +0300
commit42cf40bfbda8b28483f58ef313805df5ddd4db9f (patch)
tree80e255204bd7dfe5aea0ec5dd580125a7a75b512 /pkgs/applications/networking/instant-messengers/scudcloud
parent13f43c7ebc916a42d050a2ca7ac08e5ae9da1ea6 (diff)
scudcloud: init at 1.35/254-port-to-qt5
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/scudcloud')
-rw-r--r--pkgs/applications/networking/instant-messengers/scudcloud/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/scudcloud/default.nix b/pkgs/applications/networking/instant-messengers/scudcloud/default.nix
new file mode 100644
index 0000000000000..229e3497ea4b5
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/scudcloud/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchgit, python3Packages }:
+
+python3Packages.buildPythonPackage {
+  name = "scudcloud-1.35";
+  namePrefix = "";
+
+  # Version 1.35, branch 254-port-to-qt5
+  # https://github.com/raelgc/scudcloud/commit/6d924b5c23597c94d1a8e829a8a5d917806a5bc9
+  src = fetchgit {
+      url = https://github.com/raelgc/scudcloud/;
+      rev = "6d924b5c23597c94d1a8e829a8a5d917806a5bc9";
+      sha256 = "01k5am3067l3p1c91mdrh2fk3cgr20dhppa6flqi5b2ygzrc1i8q";
+  };
+
+  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 ];
+  };
+}