1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00

Merge pull request #61976 from suhr/kvirc

kvirc: init at 5.0.0
This commit is contained in:
Aaron Andersen 2019-05-25 13:32:30 -04:00 committed by GitHub
commit 10ed05ec5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub
, qtbase, qtmultimedia, qtsvg, qtx11extras
, pkgconfig, cmake, gettext
}:
stdenv.mkDerivation rec {
pname = "kvirc";
version = "5.0.0";
src = fetchFromGitHub {
owner = "kvirc";
repo = "KVIrc";
rev = version;
sha256 = "1dq7v6djw0gz56rvghs4r5gfhzx4sfg60rnv6b9zprw0vlvcxbn4";
};
buildInputs = [
qtbase qtmultimedia qtsvg qtx11extras
];
nativeBuildInputs = [
pkgconfig cmake gettext
];
meta = with stdenv.lib; {
description = "Advanced IRC Client";
homepage = "http://www.kvirc.net/";
license = licenses.gpl2;
maintainers = [ maintainers.suhr ];
platforms = platforms.linux;
};
}

View file

@ -18664,6 +18664,8 @@ in
python3Packages = python36Packages;
};
kvirc = libsForQt5.callPackage ../applications/networking/irc/kvirc { };
lame = callPackage ../development/libraries/lame { };
larswm = callPackage ../applications/window-managers/larswm { };