Merge pull request #270187 from rake5k/spectrwm-3.5.1

spectrwm: unstable-2023-05-07 -> 3.5.1

authored by Weijia Wang and committed by GitHub 3baf8942 8a02d873

+15 -15
+9 -9
maintainers/maintainer-list.nix
··· 3277 githubId = 1103294; 3278 name = "Christopher Rosset"; 3279 }; 3280 - christianharke = { 3281 - email = "christian@harke.ch"; 3282 - github = "rake5k"; 3283 - githubId = 13007345; 3284 - name = "Christian Harke"; 3285 - keys = [{ 3286 - fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; 3287 - }]; 3288 - }; 3289 christophcharles = { 3290 github = "christophcharles"; 3291 githubId = 23055925; ··· 15012 github = "RaitoBezarius"; 15013 githubId = 314564; 15014 name = "Ryan Lahfa"; 15015 }; 15016 rakesh4g = { 15017 email = "rakeshgupta4u@gmail.com";
··· 3277 githubId = 1103294; 3278 name = "Christopher Rosset"; 3279 }; 3280 christophcharles = { 3281 github = "christophcharles"; 3282 githubId = 23055925; ··· 15003 github = "RaitoBezarius"; 15004 githubId = 314564; 15005 name = "Ryan Lahfa"; 15006 + }; 15007 + rake5k = { 15008 + email = "christian@harke.ch"; 15009 + github = "rake5k"; 15010 + githubId = 13007345; 15011 + name = "Christian Harke"; 15012 + keys = [{ 15013 + fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; 15014 + }]; 15015 }; 15016 rakesh4g = { 15017 email = "rakeshgupta4u@gmail.com";
+6 -6
pkgs/applications/window-managers/spectrwm/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, xorg }: 2 3 - stdenv.mkDerivation { 4 pname = "spectrwm"; 5 - version = "unstable-2023-05-07"; 6 7 src = fetchFromGitHub { 8 owner = "conformal"; 9 repo = "spectrwm"; 10 - rev = "06e3733175969c307a6fd47240a7a37b29d60513"; 11 - sha256 = "QcEwFg9QTi+cCl2JghKOzEZ19LP/ZFMbZJAMJ0BLH9M="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ]; ··· 31 meta = with lib; { 32 description = "A tiling window manager"; 33 homepage = "https://github.com/conformal/spectrwm"; 34 - maintainers = with maintainers; [ christianharke ]; 35 license = licenses.isc; 36 platforms = platforms.all; 37 ··· 45 ''; 46 }; 47 48 - }
··· 1 { lib, stdenv, fetchFromGitHub, pkg-config, xorg }: 2 3 + stdenv.mkDerivation (finalAttrs: { 4 pname = "spectrwm"; 5 + version = "3.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "conformal"; 9 repo = "spectrwm"; 10 + rev = "SPECTRWM_${lib.replaceStrings ["."] ["_"] finalAttrs.version}"; 11 + hash = "sha256-Nlzo35OsNqFbR6nl3nnGXDWmwc8JlP4tyDuIGtKTnIY="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ]; ··· 31 meta = with lib; { 32 description = "A tiling window manager"; 33 homepage = "https://github.com/conformal/spectrwm"; 34 + maintainers = with maintainers; [ rake5k ]; 35 license = licenses.isc; 36 platforms = platforms.all; 37 ··· 45 ''; 46 }; 47 48 + })