mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
6b2a05e190
treewide: use toString on list NIX_CFLAGS_COMPILE treewide: move NIX_CFLAGS_COMPILE to the env attrset
80 lines
1.9 KiB
Nix
80 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, ninja
|
|
, unzip
|
|
, wrapQtAppsHook
|
|
, libxcrypt
|
|
, qtbase
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ladybird";
|
|
version = "unstable-2023-01-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SerenityOS";
|
|
repo = "serenity";
|
|
rev = "45e85d20b64862df119f643f24e2d500c76c58f3";
|
|
hash = "sha256-n2mLg9wNfdMGsJuGj+ukjto9qYjGOIz4cZjgvMGQUrY=";
|
|
};
|
|
|
|
sourceRoot = "source/Ladybird";
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "MACOSX_BUNDLE TRUE" "MACOSX_BUNDLE FALSE"
|
|
# https://github.com/SerenityOS/serenity/issues/17062
|
|
substituteInPlace main.cpp \
|
|
--replace "./SQLServer/SQLServer" "$out/bin/SQLServer"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
unzip
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libxcrypt
|
|
qtbase
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# Disable network operations
|
|
"-DENABLE_TIME_ZONE_DATABASE_DOWNLOAD=false"
|
|
"-DENABLE_UNICODE_DATABASE_DOWNLOAD=false"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([
|
|
"-Wno-error"
|
|
] ++ lib.optionals (stdenv.isDarwin && lib.versionOlder stdenv.targetPlatform.darwinSdkVersion "11.0") [
|
|
# error: use of undeclared identifier 'aligned_alloc'
|
|
"-include mm_malloc.h"
|
|
"-Daligned_alloc=_mm_malloc"
|
|
]);
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/201254
|
|
NIX_LDFLAGS = lib.optionalString (stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU) "-lgcc";
|
|
|
|
# https://github.com/SerenityOS/serenity/issues/10055
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -add_rpath $out/lib $out/bin/ladybird
|
|
'';
|
|
|
|
passthru.tests = {
|
|
nixosTest = nixosTests.ladybird;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A browser using the SerenityOS LibWeb engine with a Qt GUI";
|
|
homepage = "https://github.com/awesomekling/ladybird";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|