5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmocka
|
|
, darwin
|
|
, fetchFromGitHub
|
|
, gtk3
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, unstableGitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libui-ng";
|
|
version = "4.1-unstable-2024-05-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libui-ng";
|
|
repo = "libui-ng";
|
|
rev = "56f1ad65f0f32bb1eb67a268cca4658fbe4567c1";
|
|
hash = "sha256-wo4iS/a1ErdipFDPYKvaGpO/JGtk6eU/qMLC4eUoHnA=";
|
|
};
|
|
|
|
postPatch = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''
|
|
substituteInPlace meson.build --replace "'-arch', 'arm64'" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmocka
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
if stdenv.isDarwin then [
|
|
darwin.libobjc
|
|
darwin.apple_sdk_11_0.Libsystem
|
|
darwin.apple_sdk_11_0.frameworks.Cocoa
|
|
darwin.apple_sdk_11_0.frameworks.AppKit
|
|
darwin.apple_sdk_11_0.frameworks.CoreFoundation
|
|
] else [
|
|
gtk3
|
|
];
|
|
|
|
mesonFlags = [
|
|
(lib.mesonBool "examples" (!stdenv.isDarwin))
|
|
];
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
tagPrefix = "alpha";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A portable GUI library for C";
|
|
homepage = "https://github.com/libui-ng/libui-ng";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|