summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers/wayfire/wf-config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers/wayfire/wf-config.nix')
-rw-r--r--pkgs/applications/window-managers/wayfire/wf-config.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/wayfire/wf-config.nix b/pkgs/applications/window-managers/wayfire/wf-config.nix
new file mode 100644
index 000000000000..00a4404c1d4e
--- /dev/null
+++ b/pkgs/applications/window-managers/wayfire/wf-config.nix
@@ -0,0 +1,23 @@
+{ stdenv, lib, fetchurl, meson, ninja, pkg-config, glm, libevdev, libxml2 }:
+
+stdenv.mkDerivation rec {
+ pname = "wf-config";
+ version = "0.6.0";
+
+ src = fetchurl {
+ url = "https://github.com/WayfireWM/wf-config/releases/download/${version}/wf-config-${version}.tar.xz";
+ sha256 = "1a5aqybhbp9dp4jygrm3gbkdap5qbd52y6ihfr4rm1cj37sckcn0";
+ };
+
+ nativeBuildInputs = [ meson ninja pkg-config ];
+ buildInputs = [ libevdev libxml2 ];
+ propagatedBuildInputs = [ glm ];
+
+ meta = with lib; {
+ homepage = "https://github.com/WayfireWM/wf-config";
+ description = "Library for managing configuration files, written for Wayfire";
+ license = licenses.mit;
+ maintainers = with maintainers; [ qyliss wucke13 ];
+ platforms = platforms.unix;
+ };
+}