communi: init at 2016-01-03

+32
+30
pkgs/applications/networking/irc/communi/default.nix
··· 1 + { fetchgit, libcommuni, qt5, stdenv 2 + }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "communi-${version}"; 6 + version = "2016-01-03"; 7 + 8 + src = fetchgit { 9 + url = "https://github.com/communi/communi-desktop.git"; 10 + rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876"; 11 + sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd"; 12 + }; 13 + 14 + buildInputs = [ libcommuni qt5.qtbase ]; 15 + 16 + enableParallelBuild = true; 17 + 18 + configurePhase = '' 19 + export QMAKEFEATURES=${libcommuni}/features 20 + qmake -r COMMUNI_INSTALL_PREFIX=$out 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + description = "A simple and elegant cross-platform IRC client"; 25 + homepage = https://github.com/communi/communi-desktop; 26 + license = licenses.bsd3; 27 + platforms = platforms.all; 28 + maintainers = with maintainers; [ hrdinka ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 11288 11288 pulseaudioSupport = config.pulseaudio or false; 11289 11289 }; 11290 11290 11291 + communi = callPackage ../applications/networking/irc/communi { }; 11292 + 11291 11293 CompBus = callPackage ../applications/audio/CompBus { }; 11292 11294 11293 11295 compiz = callPackage ../applications/window-managers/compiz {