aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2022-06-16 13:42:31 +0300
committerMihai Fufezan <[email protected]>2022-06-21 22:11:46 +0300
commit8bd7234d7256d494794741f973f470458a1ad904 (patch)
tree919d9ab6463f3ae9e623235761e161db4b7981fb
parentf58bb0187b60e4d7055527d1bf8e4b3bc6dfee91 (diff)
downloadHyprland-8bd7234d7256d494794741f973f470458a1ad904.tar.gz
Hyprland-8bd7234d7256d494794741f973f470458a1ad904.zip
nix: change build system to meson
flake.nix: change wlroots url to mirror, update version flake.lock: update wlroots & nixpkgs nix/update-inputs.sh: update wlroots url
-rw-r--r--flake.lock20
-rw-r--r--flake.nix2
-rw-r--r--nix/default.nix35
-rw-r--r--nix/meson-build.patch36
-rwxr-xr-xnix/update-inputs.sh2
5 files changed, 55 insertions, 40 deletions
diff --git a/flake.lock b/flake.lock
index 06d8ffcf..6f4cc7d0 100644
--- a/flake.lock
+++ b/flake.lock
@@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
- "lastModified": 1654593855,
- "narHash": "sha256-c+SyXvj7THre87OyIdZfRVR+HhI/g1ZDrQ3VUtTuHkU=",
+ "lastModified": 1655221618,
+ "narHash": "sha256-ht8HRFthDKzYt+il+sGgkBwrv+Ex2l8jdGVpsrPfFME=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "033bd4fa9a8fbe0c68a88e925d9a884161044b25",
+ "rev": "6616de389ed55fba6eeba60377fc04732d5a207c",
"type": "github"
},
"original": {
@@ -25,19 +25,17 @@
"wlroots": {
"flake": false,
"locked": {
- "host": "gitlab.freedesktop.org",
"lastModified": 1654618691,
"narHash": "sha256-8y3u8CoigjoZOVbA2wCWBHlDNEakv0AVxU46/cOC00s=",
- "owner": "wlroots",
- "repo": "wlroots",
+ "owner": "ThatOneCalculator",
+ "repo": "wlroots-mirror",
"rev": "b89ed9015c3fbe8d339e9d65cf70fdca6e5645bc",
- "type": "gitlab"
+ "type": "github"
},
"original": {
- "host": "gitlab.freedesktop.org",
- "owner": "wlroots",
- "repo": "wlroots",
- "type": "gitlab"
+ "owner": "ThatOneCalculator",
+ "repo": "wlroots-mirror",
+ "type": "github"
}
}
},
diff --git a/flake.nix b/flake.nix
index 9ea3283a..8500c7a4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,7 +4,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
wlroots = {
- url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org";
+ url = "github:ThatOneCalculator/wlroots-mirror";
flake = false;
};
};
diff --git a/nix/default.nix b/nix/default.nix
index 20586b9f..18570f12 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -3,7 +3,7 @@
stdenv,
fetchFromGitHub,
pkg-config,
- cmake,
+ meson,
ninja,
libdrm,
libinput,
@@ -27,7 +27,7 @@ stdenv.mkDerivation {
src = ../.;
nativeBuildInputs = [
- cmake
+ meson
ninja
pkg-config
];
@@ -48,33 +48,14 @@ stdenv.mkDerivation {
]
++ lib.optional enableXWayland xwayland;
- cmakeFlags =
- ["-DCMAKE_BUILD_TYPE=Release"]
- ++ lib.optional (!enableXWayland) "-DNO_XWAYLAND=true";
+ mesonBuildType = "release";
- # enables building with nix-supplied wlroots instead of submodule
- prePatch = ''
- sed -Ei 's/"\.\.\/wlroots\/include\/([a-zA-Z0-9./_-]+)"/<\1>/g' src/includes.hpp
- '';
- postPatch = ''
- make protocols
- '';
+ mesonFlags = lib.optional (!enableXWayland) "-DNO_XWAYLAND=true";
- postBuild = ''
- pushd ../hyprctl
- make all
- popd
- '';
-
- installPhase = ''
- pushd ..
- install -Dm644 ./example/hyprland.desktop -t $out/share/wayland-sessions
- install -Dm755 ./build/Hyprland -t $out/bin
- install -Dm755 ./hyprctl/hyprctl -t $out/bin
- install -Dm644 ./assets/* -t $out/share/hyprland
- install -Dm644 ./example/hyprland.conf -t $out/share/hyprland
- popd
- '';
+ patches = [
+ # make meson use the provided wlroots instead of the git submodule
+ ./meson-build.patch
+ ];
passthru.providedSessions = ["hyprland"];
diff --git a/nix/meson-build.patch b/nix/meson-build.patch
new file mode 100644
index 00000000..57950de9
--- /dev/null
+++ b/nix/meson-build.patch
@@ -0,0 +1,36 @@
+diff --git a/meson.build b/meson.build
+index 22ee4bf..5528613 100644
+--- a/meson.build
++++ b/meson.build
+@@ -2,16 +2,10 @@ project('Hyprland', 'cpp', 'c',
+ version : '0.1',
+ default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static'])
+
+-wlroots = subproject('wlroots', default_options: ['examples=false'])
+-have_xwlr = wlroots.get_variable('features').get('xwayland')
++wlroots = dependency('wlroots', version: '>=0.16.0')
+ xcb_dep = dependency('xcb', required: get_option('xwayland'))
+
+-if get_option('xwayland').enabled() and not have_xwlr
+- error('Cannot enable Xwayland in Hyprland: wlroots has been built without Xwayland support')
+-endif
+-have_xwayland = xcb_dep.found() and have_xwlr
+-
+-if not have_xwayland
++if not xcb_dep.found()
+ add_project_arguments('-DNO_XWAYLAND', language: 'cpp')
+ endif
+
+diff --git a/src/meson.build b/src/meson.build
+index 5d64188..a676333 100644
+--- a/src/meson.build
++++ b/src/meson.build
+@@ -7,7 +7,7 @@ executable('Hyprland', src,
+ server_protos,
+ dependency('wayland-server'),
+ dependency('wayland-client'),
+- wlroots.get_variable('wlroots'),
++ wlroots,
+ dependency('cairo'),
+ dependency('pango'),
+ dependency('pangocairo'),
diff --git a/nix/update-inputs.sh b/nix/update-inputs.sh
index 8c238222..856dd43a 100755
--- a/nix/update-inputs.sh
+++ b/nix/update-inputs.sh
@@ -10,7 +10,7 @@ if [ $SUB_REV != $CRT_REV ]; then
nix flake lock --update-input nixpkgs
# update wlroots to submodule revision
- nix flake lock --override-input wlroots "gitlab:wlroots/wlroots/$SUB_REV?host=gitlab.freedesktop.org"
+ nix flake lock --override-input wlroots "github:ThatOneCalculator/wlroots-mirror/$SUB_REV"
# remove "dirty" mark from lockfile
jq < flake.lock 'del(.nodes.wlroots.original.rev)' | sponge flake.lock