f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
634 B
Nix
21 lines
634 B
Nix
{ stdenv, fetchurl, python3Packages }:
|
|
|
|
let version = "1.58";
|
|
in python3Packages.buildPythonPackage {
|
|
name = "scudcloud-${version}";
|
|
|
|
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 ];
|
|
};
|
|
}
|