From 916666515a9418eafb503f0092c1bcf5fb855f56 Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Sun, 26 Nov 2023 16:54:49 +0100 Subject: [PATCH 1/2] maintainers: christianharke -> rake5k I changed my GH user handle in the meantime, this fixes the discrepancy stemming from it. --- maintainers/maintainer-list.nix | 18 +++++++++--------- .../window-managers/spectrwm/default.nix | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 141a79b38442..c238ea456295 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3259,15 +3259,6 @@ githubId = 1103294; name = "Christopher Rosset"; }; - christianharke = { - email = "christian@harke.ch"; - github = "rake5k"; - githubId = 13007345; - name = "Christian Harke"; - keys = [{ - fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; - }]; - }; christophcharles = { github = "christophcharles"; githubId = 23055925; @@ -14986,6 +14977,15 @@ githubId = 314564; name = "Ryan Lahfa"; }; + rake5k = { + email = "christian@harke.ch"; + github = "rake5k"; + githubId = 13007345; + name = "Christian Harke"; + keys = [{ + fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; + }]; + }; rakesh4g = { email = "rakeshgupta4u@gmail.com"; github = "Rakesh4G"; diff --git a/pkgs/applications/window-managers/spectrwm/default.nix b/pkgs/applications/window-managers/spectrwm/default.nix index 7c4a1faddb31..ac7f559f8a6b 100644 --- a/pkgs/applications/window-managers/spectrwm/default.nix +++ b/pkgs/applications/window-managers/spectrwm/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { meta = with lib; { description = "A tiling window manager"; homepage = "https://github.com/conformal/spectrwm"; - maintainers = with maintainers; [ christianharke ]; + maintainers = with maintainers; [ rake5k ]; license = licenses.isc; platforms = platforms.all; From 4585058fc614fcf05f13016ef2a2c00434fad89b Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Wed, 22 Nov 2023 00:36:56 +0100 Subject: [PATCH 2/2] spectrwm: unstable-2023-05-07 -> 3.5.1 Bump spectrwm to 3.5.1 Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com> --- 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 ac7f559f8a6b..2bb5aca9d91c 100644 --- a/pkgs/applications/window-managers/spectrwm/default.nix +++ b/pkgs/applications/window-managers/spectrwm/default.nix @@ -1,14 +1,14 @@ { lib, stdenv, fetchFromGitHub, pkg-config, xorg }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "spectrwm"; - version = "unstable-2023-05-07"; + version = "3.5.1"; src = fetchFromGitHub { owner = "conformal"; repo = "spectrwm"; - rev = "06e3733175969c307a6fd47240a7a37b29d60513"; - sha256 = "QcEwFg9QTi+cCl2JghKOzEZ19LP/ZFMbZJAMJ0BLH9M="; + rev = "SPECTRWM_${lib.replaceStrings ["."] ["_"] finalAttrs.version}"; + hash = "sha256-Nlzo35OsNqFbR6nl3nnGXDWmwc8JlP4tyDuIGtKTnIY="; }; nativeBuildInputs = [ pkg-config ]; @@ -45,4 +45,4 @@ stdenv.mkDerivation { ''; }; -} +})