mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
communi: init at 2016-01-03
This commit is contained in:
parent
4ad12e038a
commit
5e38018959
30
pkgs/applications/networking/irc/communi/default.nix
Normal file
30
pkgs/applications/networking/irc/communi/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ fetchgit, libcommuni, qt5, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "communi-${version}";
|
||||
version = "2016-01-03";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/communi/communi-desktop.git";
|
||||
rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876";
|
||||
sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd";
|
||||
};
|
||||
|
||||
buildInputs = [ libcommuni qt5.qtbase ];
|
||||
|
||||
enableParallelBuild = true;
|
||||
|
||||
configurePhase = ''
|
||||
export QMAKEFEATURES=${libcommuni}/features
|
||||
qmake -r COMMUNI_INSTALL_PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple and elegant cross-platform IRC client";
|
||||
homepage = https://github.com/communi/communi-desktop;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ hrdinka ];
|
||||
};
|
||||
}
|
@ -11288,6 +11288,8 @@ let
|
||||
pulseaudioSupport = config.pulseaudio or false;
|
||||
};
|
||||
|
||||
communi = callPackage ../applications/networking/irc/communi { };
|
||||
|
||||
CompBus = callPackage ../applications/audio/CompBus { };
|
||||
|
||||
compiz = callPackage ../applications/window-managers/compiz {
|
||||
|
Loading…
Reference in New Issue
Block a user