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

39 lines
958 B
Nix
Raw Normal View History

2017-06-02 15:40:19 +00:00
{ stdenv, fetchFromGitHub, qtbase, qtdeclarative, qmake, which
2016-01-10 11:01:05 +00:00
}:
stdenv.mkDerivation rec {
name = "libcommuni-${version}";
version = "2016-08-17";
2016-01-10 11:01:05 +00:00
src = fetchFromGitHub {
owner = "communi";
repo = "libcommuni";
rev = "dedba6faf57c31c8c70fd563ba12d75a9caee8a3";
sha256 = "0wvs53z34vfs5xlln4a6sbd4981svag89xm0f4k20mb1i052b20i";
2016-01-10 11:01:05 +00:00
};
buildInputs = [ qtbase qtdeclarative ];
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ qmake which ];
2016-01-10 11:01:05 +00:00
enableParallelBuilding = true;
2016-01-10 11:01:05 +00:00
2016-06-30 01:29:59 +00:00
dontUseQmakeConfigure = true;
configureFlags = "-config release";
preConfigure = ''
sed -i -e 's|/bin/pwd|pwd|g' configure
2016-01-10 11:01:05 +00:00
'';
doCheck = true;
# Hack to avoid TMPDIR in RPATHs.
preFixup = ''rm -rf "$(pwd)" '';
2016-01-10 11:01:05 +00: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 ];
};
}