summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/tools/wayland/wlsunset/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/wayland/wlsunset/default.nix b/pkgs/tools/wayland/wlsunset/default.nix
index 931f394d689..3572f63f57e 100644
--- a/pkgs/tools/wayland/wlsunset/default.nix
+++ b/pkgs/tools/wayland/wlsunset/default.nix
@@ -1,19 +1,19 @@
-{ lib, stdenv, fetchFromSourcehut, meson, pkg-config, ninja, wayland
+{ lib, stdenv, fetchFromSourcehut, meson, pkg-config, ninja, wayland, scdoc
 , wayland-protocols
 }:
 
 stdenv.mkDerivation rec {
   pname = "wlsunset";
-  version = "0.1.0";
+  version = "0.2.0";
 
   src = fetchFromSourcehut {
     owner = "~kennylevinsen";
     repo = pname;
     rev = version;
-    sha256 = "12snizvf49y40cirhr2brgyldhsykv4k2gnln2sdrajqzhrc98v6";
+    sha256 = "0hhsddh3rs066rbsjksr8kcwg8lvglbvs67dq0r5wx5c1xcwb51w";
   };
 
-  nativeBuildInputs = [ meson pkg-config ninja wayland ];
+  nativeBuildInputs = [ meson pkg-config ninja wayland scdoc ];
   buildInputs = [ wayland wayland-protocols ];
 
   meta = with lib; {