summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-11-08 16:16:47 +0100
committerGitHub <noreply@github.com>2021-11-08 16:16:47 +0100
commitddb1587974c0b76c615ce04a341289fa79844b6d (patch)
tree841e9fe605c3ba772766d64986e9d17bb6af1c4d /pkgs
parent92209df0acbae5180764c1f260d4ae60af1a58f6 (diff)
parentdcb453fde4585c6567ecc8bbea7862f84527be71 (diff)
Merge pull request #145069 from wineee/srain
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/irc/srain/default.nix60
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 62 insertions, 0 deletions
diff --git a/pkgs/applications/networking/irc/srain/default.nix b/pkgs/applications/networking/irc/srain/default.nix
new file mode 100644
index 000000000000..282506c5e0af
--- /dev/null
+++ b/pkgs/applications/networking/irc/srain/default.nix
@@ -0,0 +1,60 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, pkg-config
+, gtk3
+, libconfig
+, libsoup
+, libsecret
+, openssl
+, gettext
+, glib
+, glib-networking
+, appstream-glib
+, dbus-glib
+, python3Packages
+, meson
+, ninja
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+ pname = "srain";
+ version = "1.3.0";
+
+ src = fetchFromGitHub {
+ owner = "SrainApp";
+ repo = "srain";
+ rev = version;
+ sha256 = "14s0h5wgvlkdylnjis2fa7m835142jzw0d0yqjnir1wqnwmq1rld";
+ };
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ pkg-config
+ gettext
+ appstream-glib
+ wrapGAppsHook
+ python3Packages.sphinx
+ ];
+
+ buildInputs = [
+ gtk3
+ glib
+ glib-networking
+ dbus-glib
+ libconfig
+ libsoup
+ libsecret
+ openssl
+ ];
+
+ meta = with lib; {
+ description = "Modern IRC client written in GTK";
+ homepage = "https://srain.im";
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ rewine ];
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4951a0409207..da791f4ecad7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -25646,6 +25646,8 @@ with pkgs;
withPortAudio = stdenv.isDarwin;
};
+ srain = callPackage ../applications/networking/irc/srain { };
+
super-productivity = callPackage ../applications/office/super-productivity { };
wlroots = callPackage ../development/libraries/wlroots {