nixpkgs/pkgs/development/libraries/libcommuni/default.nix

33 lines
836 B
Nix
Raw Normal View History

2016-06-30 03:29:59 +02:00
{ fetchgit, qtbase, qmakeHook, which, stdenv
2016-01-10 12:01:05 +01:00
}:
stdenv.mkDerivation rec {
name = "libcommuni-${version}";
version = "2016-01-02";
src = fetchgit {
url = "https://github.com/communi/libcommuni.git";
rev = "779b0c774428669235d44d2db8e762558e2f4b79";
sha256 = "1zqdl5why66rg3pksxmxsmrwxs4042fq9jhc394qvk0s36aryqsj";
2016-01-10 12:01:05 +01:00
};
buildInputs = [ qtbase ];
2016-06-30 03:29:59 +02:00
nativeBuildInputs = [ qmakeHook which ];
2016-01-10 12:01:05 +01:00
enableParallelBuild = true;
2016-06-30 03:29:59 +02:00
dontUseQmakeConfigure = true;
configureFlags = "-config release";
preConfigure = ''
sed -i -e 's|/bin/pwd|pwd|g' configure
2016-01-10 12:01:05 +01:00
'';
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 ];
};
}