1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libcommuni: init at 2016-01-02

This commit is contained in:
Christoph Hrdinka 2016-01-10 12:01:05 +01:00
parent b466dab8b2
commit 4ad12e038a
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ fetchgit, qt5, stdenv
}:
stdenv.mkDerivation rec {
name = "libcommuni-${version}";
version = "2016-01-02";
src = fetchgit {
url = "https://github.com/communi/libcommuni.git";
rev = "779b0c774428669235d44d2db8e762558e2f4b79";
sha256 = "15sb7vinaaz1v5nclxpnp5p9a0kmfmlgiqibkipnyydizclidpfx";
};
buildInputs = [ qt5.qtbase ];
enableParallelBuild = true;
configurePhase = ''
sed -i -e 's|/bin/pwd|pwd|g' configure
./configure -config release -prefix $out -qmake ${qt5.qtbase}/bin/qmake
'';
meta = with stdenv.lib; {
description = "A cross-platform IRC framework written with Qt";
homepage = https://communi.github.io;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ hrdinka ];
};
}

View file

@ -7040,6 +7040,8 @@ let
libcm = callPackage ../development/libraries/libcm { };
libcommuni = callPackage ../development/libraries/libcommuni { };
inherit (gnome3) libcroco;
libcangjie = callPackage ../development/libraries/libcangjie { };