mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
kvirc: init at 5.0.0
This commit is contained in:
parent
3055ae4f79
commit
8adf033984
32
pkgs/applications/networking/irc/kvirc/default.nix
Normal file
32
pkgs/applications/networking/irc/kvirc/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -18660,6 +18660,8 @@ in
|
|||||||
python3Packages = python36Packages;
|
python3Packages = python36Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
kvirc = libsForQt5.callPackage ../applications/networking/irc/kvirc { };
|
||||||
|
|
||||||
lame = callPackage ../development/libraries/lame { };
|
lame = callPackage ../development/libraries/lame { };
|
||||||
|
|
||||||
larswm = callPackage ../applications/window-managers/larswm { };
|
larswm = callPackage ../applications/window-managers/larswm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user