From 2cf39baf66d4a08f11c1e9d42bc7acfd90448a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilhelm=20Bergs=C3=B8e?= Date: Mon, 9 Sep 2024 11:33:22 +0200 Subject: [PATCH] spectrwm: 3.5.1 -> 3.6.0 --- pkgs/applications/window-managers/spectrwm/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/window-managers/spectrwm/default.nix b/pkgs/applications/window-managers/spectrwm/default.nix index ef1a90fd2b92..1678e5954846 100644 --- a/pkgs/applications/window-managers/spectrwm/default.nix +++ b/pkgs/applications/window-managers/spectrwm/default.nix @@ -1,18 +1,18 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, xorg }: +{ lib, stdenv, fetchFromGitHub, libbsd, pkg-config, xorg }: stdenv.mkDerivation (finalAttrs: { pname = "spectrwm"; - version = "3.5.1"; + version = "3.6.0"; src = fetchFromGitHub { owner = "conformal"; repo = "spectrwm"; rev = "SPECTRWM_${lib.replaceStrings ["."] ["_"] finalAttrs.version}"; - hash = "sha256-Nlzo35OsNqFbR6nl3nnGXDWmwc8JlP4tyDuIGtKTnIY="; + hash = "sha256-Dnn/iIrceiAVuMR8iMGcc7LqNhWC496eT5gNrYOInRU="; }; nativeBuildInputs = [ pkg-config ]; - buildInputs = with xorg; [ + buildInputs = (with xorg; [ libXrandr libXcursor libXft @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { xcbutil xcbutilkeysyms xcbutilwm - ]; + ] ++ [ libbsd ]); prePatch = let subdir = if stdenv.isDarwin then "osx" else "linux";