summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-05-02 17:38:37 +0000
committerAlyssa Ross <hi@alyssa.is>2020-12-19 01:41:29 +0000
commit3720a1ad18930a5373a5ae80c8e0b5123e94bad9 (patch)
tree1beb392b5c6d64be9304f9702b157252a6a0bb34
parent1ef5ea3cc31b2f1e10338155ea21cbcda6af3b1e (diff)
wf-config: init at 0.6.0
-rw-r--r--pkgs/applications/window-managers/wayfire/wf-config.nix23
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 25 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;
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 25adca6946e4..c1dbd2c1fa48 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -24755,6 +24755,8 @@ in
way-cooler = throw ("way-cooler is abandoned by its author: " +
"https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html");
+ wf-config = callPackage ../applications/window-managers/wayfire/wf-config.nix { };
+
waypipe = callPackage ../applications/networking/remote/waypipe { };
wayv = callPackage ../tools/X11/wayv {};