commit 29fcac6880e787343f2fc0c86ecfdf956a6f06ce parent 69e5fde2c32fd10f88fb50c86f09bef486e95c18 Author: Nikolay Korotkiy <sikmir@gmail.com> Date: Fri, 30 Oct 2020 03:34:53 +0300 Fix CI build Diffstat:
M | pkgs/applications/window-managers/yabai/default.nix | | | 1 | + |
M | pkgs/tools/geo/taginfo-tools/default.nix | | | 8 | +++----- |
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/pkgs/applications/window-managers/yabai/default.nix b/pkgs/applications/window-managers/yabai/default.nix @@ -28,5 +28,6 @@ stdenv.mkDerivation { license = licenses.mit; maintainers = [ maintainers.sikmir ]; platforms = platforms.darwin; + skip.ci = !stdenv.isDarwin; }; } diff --git a/pkgs/tools/geo/taginfo-tools/default.nix b/pkgs/tools/geo/taginfo-tools/default.nix @@ -2,18 +2,16 @@ stdenv.mkDerivation { pname = "taginfo-tools"; - version = "unstable-2020-08-27"; + version = "unstable-2020-10-28"; src = fetchFromGitHub { owner = "taginfo"; repo = "taginfo-tools"; - rev = "794d5edc272efaaf5381e7ef513a630ddd4a13ec"; - sha256 = "05xcqrmm8hzhgbjlyiakzggqjnzbhkdz6qhr7m81mkz3gp0wxffp"; + rev = "088602ac10d8707d94589c4a0b9d6eff48edf9f2"; + sha256 = "0yx4bh2gmxsmk8jz8qsxv73h3hi5v3hcpzlaaszjixc88aqa3zz3"; fetchSubmodules = true; }; - cmakeFlags = stdenv.lib.optional stdenv.isDarwin "-DCMAKE_FIND_FRAMEWORK=LAST"; - nativeBuildInputs = [ cmake ]; buildInputs = [ bzip2 expat gd icu libosmium protozero sqlite zlib ];