2eacddf0dc
* pgadmin: use https homepage * msn-pecan: move homepage to github google code is now unavailable * pidgin-latex: use https for homepage * pidgin-opensteamworks: use github for homepage google code is unavailable * putty: use https for homepage * ponylang: use https for homepage * picolisp: use https for homepage * phonon: use https for homepage * pugixml: use https for homepage * pioneer: use https for homepage * packer: use https for homepage * pokerth: usee https for homepage * procps-ng: use https for homepage * pycaml: use https for homepage * proot: move homepage to .github.io * pius: use https for homepage * pdfread: use https for homepage * postgresql: use https for homepage * ponysay: move homepage to new site * prometheus: use https for homepage * powerdns: use https for homepage * pm-utils: use https for homepage * patchelf: move homepage to https * tesseract: move homepage to github * quodlibet: move homepage from google code * jbrout: move homepage from google code * eiskaltdcpp: move homepage to github * nodejs: use https to homepage * nix: use https for homepage * pdf2djvu: move homepage from google code * game-music-emu: move homepage from google code * vacuum: move homepae from google code
64 lines
2.1 KiB
Nix
64 lines
2.1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt4, boost, bzip2, libX11
|
|
, fetchpatch, pcre-cpp, libidn, lua5, miniupnpc, aspell, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "eiskaltdcpp-${version}";
|
|
version = "2.2.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eiskaltdcpp";
|
|
repo = "eiskaltdcpp";
|
|
rev = "v${version}";
|
|
sha256 = "1mqz0g69njmlghcra3izarjxbxi1jrhiwn4ww94b8jv8xb9cv682";
|
|
};
|
|
|
|
buildInputs = [ cmake pkgconfig qt4 boost bzip2 libX11 pcre-cpp libidn lua5 miniupnpc aspell gettext ];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/eiskaltdcpp/eiskaltdcpp/commit/3b7b56bd7060b426b1f1bfded392ae6853644e2e.patch";
|
|
sha256 = "1rqjdsvirn3ks9w9qn893fb73mz84xm04wl13fvsvj8p42i5cjas";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/eiskaltdcpp/eiskaltdcpp/commit/bb9eb364a943fe2a67b3ea52ec6a3f9e911f07dc.patch";
|
|
sha256 = "1hjhf9a9j4z8v24g5qh5mcg3n0540lbn85y7kvxsh3khc5v3cywx";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/eiskaltdcpp/eiskaltdcpp/commit/ef4426f1f9a8255e335b0862234e6cc28befef5e.patch";
|
|
sha256 = "13j018c499n4b5as2n39ws64yj0cf4fskxbqab309vmnjkirxv6x";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/eiskaltdcpp/eiskaltdcpp/commit/a9c136c8707280d0eeb66be6b289d9718287c55c.patch";
|
|
sha256 = "0w8v4mbrzk7pmzc475ff96mzzwlh8a0p62kk7p829m5yqdwj4sc9";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/eiskaltdcpp/eiskaltdcpp/commit/3b9c502ff5c98856d4f8fdb7ed3c6ef34448bfb7.patch";
|
|
sha256 = "0fjwaq0wd9a164k5ysdjy89hx0ixnxc6q7cvyn1ba28snm0pgxb8";
|
|
})
|
|
];
|
|
|
|
cmakeFlags = ''
|
|
-DUSE_ASPELL=ON
|
|
-DUSE_QT_QML=ON
|
|
-DFREE_SPACE_BAR_C=ON
|
|
-DUSE_MINIUPNP=ON
|
|
-DLOCAL_MINIUPNP=ON
|
|
-DDBUS_NOTIFY=ON
|
|
-DUSE_JS=ON
|
|
-DPERL_REGEX=ON
|
|
-DUSE_CLI_XMLRPC=ON
|
|
-DWITH_SOUNDS=ON
|
|
-DLUA_SCRIPT=ON
|
|
-DWITH_LUASCRIPTS=ON
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A cross-platform program that uses the Direct Connect and ADC protocols";
|
|
homepage = https://github.com/eiskaltdcpp/eiskaltdcpp;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|