wf-config: init at 0.6.0
This commit is contained in:
parent
1ef5ea3cc3
commit
3720a1ad18
23
pkgs/applications/window-managers/wayfire/wf-config.nix
Normal file
23
pkgs/applications/window-managers/wayfire/wf-config.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -24755,6 +24755,8 @@ in
|
|||||||
way-cooler = throw ("way-cooler is abandoned by its author: " +
|
way-cooler = throw ("way-cooler is abandoned by its author: " +
|
||||||
"https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html");
|
"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 { };
|
waypipe = callPackage ../applications/networking/remote/waypipe { };
|
||||||
|
|
||||||
wayv = callPackage ../tools/X11/wayv {};
|
wayv = callPackage ../tools/X11/wayv {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user