1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 03:25:02 +00:00
nixpkgs/pkgs/applications/networking/irc/communi/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2017-05-17 20:26:11 +01:00
{ fetchgit, libcommuni, qtbase, qmake, stdenv }:
2016-01-10 11:01:48 +00:00
stdenv.mkDerivation rec {
name = "communi-${version}";
2017-08-29 11:45:39 +01:00
version = "3.5.0";
2016-01-10 11:01:48 +00:00
src = fetchgit {
url = "https://github.com/communi/communi-desktop.git";
2017-08-29 11:45:39 +01:00
rev = "v${version}";
sha256 = "10grskhczh8601s90ikdsbjabgr9ypcp2j7vivjkl456rmg6xbji";
2016-08-29 15:43:10 +01:00
fetchSubmodules = true;
2016-01-10 11:01:48 +00:00
};
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ qmake ];
2016-03-08 12:35:03 +00:00
buildInputs = [ libcommuni qtbase ];
2016-01-10 11:01:48 +00:00
enableParallelBuilding = true;
2016-01-10 11:01:48 +00:00
preConfigure = ''
2016-01-10 11:01:48 +00:00
export QMAKEFEATURES=${libcommuni}/features
qmakeFlags="$qmakeFlags \
2016-03-08 12:35:03 +00:00
COMMUNI_INSTALL_PREFIX=$out \
COMMUNI_INSTALL_BINS=$out/bin \
COMMUNI_INSTALL_PLUGINS=$out/lib/communi/plugins \
COMMUNI_INSTALL_ICONS=$out/share/icons/hicolor \
COMMUNI_INSTALL_DESKTOP=$out/share/applications \
COMMUNI_INSTALL_THEMES=$out/share/communi/themes
"
2016-03-08 12:35:03 +00:00
'';
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
substituteInPlace "$out/share/applications/communi.desktop" \
--replace "/usr/bin" "$out/bin"
2016-01-10 11:01:48 +00:00
'';
preFixup = ''
2017-08-29 11:45:39 +01:00
rm -rf lib
2016-08-29 15:43:10 +01:00
'';
2016-01-10 11:01:48 +00:00
meta = with stdenv.lib; {
description = "A simple and elegant cross-platform IRC client";
homepage = https://github.com/communi/communi-desktop;
license = licenses.bsd3;
maintainers = with maintainers; [ hrdinka ];
2016-03-08 12:35:03 +00:00
platforms = platforms.all;
2016-01-10 11:01:48 +00:00
};
}