srain: init at 1.3.0
This commit is contained in:
parent
666abf9a4a
commit
dcb453fde4
2 changed files with 62 additions and 0 deletions
60
pkgs/applications/networking/irc/srain/default.nix
Normal file
60
pkgs/applications/networking/irc/srain/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25636,6 +25636,8 @@ with pkgs;
|
||||||
withPortAudio = stdenv.isDarwin;
|
withPortAudio = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
srain = callPackage ../applications/networking/irc/srain { };
|
||||||
|
|
||||||
super-productivity = callPackage ../applications/office/super-productivity { };
|
super-productivity = callPackage ../applications/office/super-productivity { };
|
||||||
|
|
||||||
wlroots = callPackage ../development/libraries/wlroots {
|
wlroots = callPackage ../development/libraries/wlroots {
|
||||||
|
|
Loading…
Reference in a new issue