uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
147
pkgs/os-specific/linux/conky/default.nix
Normal file
147
pkgs/os-specific/linux/conky/default.nix
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
{ config, lib, stdenv, fetchFromGitHub, pkg-config, cmake
|
||||
|
||||
# dependencies
|
||||
, glib, libXinerama, catch2
|
||||
|
||||
# optional features without extra dependencies
|
||||
, mpdSupport ? true
|
||||
, ibmSupport ? true # IBM/Lenovo notebooks
|
||||
|
||||
# optional features with extra dependencies
|
||||
|
||||
# ouch, this is ugly, but this gives the man page
|
||||
, docsSupport ? true, docbook2x, libxslt ? null
|
||||
, man ? null, less ? null
|
||||
, docbook_xsl ? null , docbook_xml_dtd_44 ? null
|
||||
|
||||
, ncursesSupport ? true , ncurses ? null
|
||||
, x11Support ? true , xlibsWrapper ? null
|
||||
, xdamageSupport ? x11Support, libXdamage ? null
|
||||
, doubleBufferSupport ? x11Support
|
||||
, imlib2Support ? x11Support, imlib2 ? null
|
||||
|
||||
, luaSupport ? true , lua ? null
|
||||
, luaImlib2Support ? luaSupport && imlib2Support
|
||||
, luaCairoSupport ? luaSupport && x11Support, cairo ? null
|
||||
, toluapp ? null
|
||||
|
||||
, wirelessSupport ? true , wirelesstools ? null
|
||||
, nvidiaSupport ? false , libXNVCtrl ? null
|
||||
, pulseSupport ? config.pulseaudio or false, libpulseaudio ? null
|
||||
|
||||
, curlSupport ? true , curl ? null
|
||||
, rssSupport ? curlSupport
|
||||
, weatherMetarSupport ? curlSupport
|
||||
, weatherXoapSupport ? curlSupport
|
||||
, journalSupport ? true, systemd ? null
|
||||
, libxml2 ? null
|
||||
}:
|
||||
|
||||
assert docsSupport -> docbook2x != null && libxslt != null
|
||||
&& man != null && less != null
|
||||
&& docbook_xsl != null && docbook_xml_dtd_44 != null;
|
||||
|
||||
assert ncursesSupport -> ncurses != null;
|
||||
|
||||
assert x11Support -> xlibsWrapper != null;
|
||||
assert xdamageSupport -> x11Support && libXdamage != null;
|
||||
assert imlib2Support -> x11Support && imlib2 != null;
|
||||
assert luaSupport -> lua != null;
|
||||
assert luaImlib2Support -> luaSupport && imlib2Support
|
||||
&& toluapp != null;
|
||||
assert luaCairoSupport -> luaSupport && toluapp != null
|
||||
&& cairo != null;
|
||||
assert luaCairoSupport || luaImlib2Support
|
||||
-> lua.luaversion == "5.3";
|
||||
|
||||
assert wirelessSupport -> wirelesstools != null;
|
||||
assert nvidiaSupport -> libXNVCtrl != null;
|
||||
assert pulseSupport -> libpulseaudio != null;
|
||||
|
||||
assert curlSupport -> curl != null;
|
||||
assert rssSupport -> curlSupport && libxml2 != null;
|
||||
assert weatherMetarSupport -> curlSupport;
|
||||
assert weatherXoapSupport -> curlSupport && libxml2 != null;
|
||||
assert journalSupport -> systemd != null;
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "conky";
|
||||
version = "1.12.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "brndnmtthws";
|
||||
repo = "conky";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-x6bR5E5LIvKWiVM15IEoUgGas/hcRp3F/O4MTOhVPb8=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e '/include.*CheckIncludeFile)/i include(CheckIncludeFiles)' \
|
||||
cmake/ConkyPlatformChecks.cmake
|
||||
'' + optionalString docsSupport ''
|
||||
# Drop examples, since they contain non-ASCII characters that break docbook2x :(
|
||||
sed -i 's/ Example: .*$//' doc/config_settings.xml
|
||||
|
||||
substituteInPlace cmake/Conky.cmake --replace "# set(RELEASE true)" "set(RELEASE true)"
|
||||
|
||||
cp ${catch2}/include/catch2/catch.hpp tests/catch2/catch.hpp
|
||||
'';
|
||||
|
||||
NIX_LDFLAGS = "-lgcc_s";
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ glib libXinerama ]
|
||||
++ optionals docsSupport [ docbook2x docbook_xsl docbook_xml_dtd_44 libxslt man less ]
|
||||
++ optional ncursesSupport ncurses
|
||||
++ optional x11Support xlibsWrapper
|
||||
++ optional xdamageSupport libXdamage
|
||||
++ optional imlib2Support imlib2
|
||||
++ optional luaSupport lua
|
||||
++ optionals luaImlib2Support [ toluapp imlib2 ]
|
||||
++ optionals luaCairoSupport [ toluapp cairo ]
|
||||
++ optional wirelessSupport wirelesstools
|
||||
++ optional curlSupport curl
|
||||
++ optional rssSupport libxml2
|
||||
++ optional weatherXoapSupport libxml2
|
||||
++ optional nvidiaSupport libXNVCtrl
|
||||
++ optional pulseSupport libpulseaudio
|
||||
++ optional journalSupport systemd
|
||||
;
|
||||
|
||||
cmakeFlags = []
|
||||
++ optional docsSupport "-DMAINTAINER_MODE=ON"
|
||||
++ optional curlSupport "-DBUILD_CURL=ON"
|
||||
++ optional (!ibmSupport) "-DBUILD_IBM=OFF"
|
||||
++ optional imlib2Support "-DBUILD_IMLIB2=ON"
|
||||
++ optional luaCairoSupport "-DBUILD_LUA_CAIRO=ON"
|
||||
++ optional luaImlib2Support "-DBUILD_LUA_IMLIB2=ON"
|
||||
++ optional (!mpdSupport) "-DBUILD_MPD=OFF"
|
||||
++ optional (!ncursesSupport) "-DBUILD_NCURSES=OFF"
|
||||
++ optional rssSupport "-DBUILD_RSS=ON"
|
||||
++ optional (!x11Support) "-DBUILD_X11=OFF"
|
||||
++ optional xdamageSupport "-DBUILD_XDAMAGE=ON"
|
||||
++ optional doubleBufferSupport "-DBUILD_XDBE=ON"
|
||||
++ optional weatherMetarSupport "-DBUILD_WEATHER_METAR=ON"
|
||||
++ optional weatherXoapSupport "-DBUILD_WEATHER_XOAP=ON"
|
||||
++ optional wirelessSupport "-DBUILD_WLAN=ON"
|
||||
++ optional nvidiaSupport "-DBUILD_NVIDIA=ON"
|
||||
++ optional pulseSupport "-DBUILD_PULSEAUDIO=ON"
|
||||
++ optional journalSupport "-DBUILD_JOURNAL=ON"
|
||||
;
|
||||
|
||||
# `make -f src/CMakeFiles/conky.dir/build.make src/CMakeFiles/conky.dir/conky.cc.o`:
|
||||
# src/conky.cc:137:23: fatal error: defconfig.h: No such file or directory
|
||||
enableParallelBuilding = false;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://conky.sourceforge.net/";
|
||||
description = "Advanced, highly configurable system monitor based on torsmo";
|
||||
maintainers = [ maintainers.guibert ];
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue