Merge pull request #47148 from LnL7/darwin-broken-e
eiskaltdcpp: mark linux only
This commit is contained in:
commit
841613d3fd
1 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt4, boost, bzip2, libX11
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt4, boost, bzip2, libX11
|
||||||
, fetchpatch, pcre-cpp, libidn, lua5, miniupnpc, aspell, gettext }:
|
, fetchpatch, libiconv, pcre-cpp, libidn, lua5, miniupnpc, aspell, gettext }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "eiskaltdcpp-${version}";
|
name = "eiskaltdcpp-${version}";
|
||||||
|
@ -12,8 +12,9 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1mqz0g69njmlghcra3izarjxbxi1jrhiwn4ww94b8jv8xb9cv682";
|
sha256 = "1mqz0g69njmlghcra3izarjxbxi1jrhiwn4ww94b8jv8xb9cv682";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
buildInputs = [ cmake qt4 boost bzip2 libX11 pcre-cpp libidn lua5 miniupnpc aspell gettext ];
|
buildInputs = [ qt4 boost bzip2 libX11 pcre-cpp libidn lua5 miniupnpc aspell gettext ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
@ -59,6 +60,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "A cross-platform program that uses the Direct Connect and ADC protocols";
|
description = "A cross-platform program that uses the Direct Connect and ADC protocols";
|
||||||
homepage = https://github.com/eiskaltdcpp/eiskaltdcpp;
|
homepage = https://github.com/eiskaltdcpp/eiskaltdcpp;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue