Merge pull request #270187 from rake5k/spectrwm-3.5.1

spectrwm: unstable-2023-05-07 -> 3.5.1
This commit is contained in:
Weijia Wang 2023-11-30 16:39:45 +01:00 committed by GitHub
commit 3baf8942e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View file

@ -3277,15 +3277,6 @@
githubId = 1103294; githubId = 1103294;
name = "Christopher Rosset"; 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 = { christophcharles = {
github = "christophcharles"; github = "christophcharles";
githubId = 23055925; githubId = 23055925;
@ -15013,6 +15004,15 @@
githubId = 314564; githubId = 314564;
name = "Ryan Lahfa"; 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 = { rakesh4g = {
email = "rakeshgupta4u@gmail.com"; email = "rakeshgupta4u@gmail.com";
github = "Rakesh4G"; github = "Rakesh4G";

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, xorg }: { lib, stdenv, fetchFromGitHub, pkg-config, xorg }:
stdenv.mkDerivation { stdenv.mkDerivation (finalAttrs: {
pname = "spectrwm"; pname = "spectrwm";
version = "unstable-2023-05-07"; version = "3.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "conformal"; owner = "conformal";
repo = "spectrwm"; repo = "spectrwm";
rev = "06e3733175969c307a6fd47240a7a37b29d60513"; rev = "SPECTRWM_${lib.replaceStrings ["."] ["_"] finalAttrs.version}";
sha256 = "QcEwFg9QTi+cCl2JghKOzEZ19LP/ZFMbZJAMJ0BLH9M="; hash = "sha256-Nlzo35OsNqFbR6nl3nnGXDWmwc8JlP4tyDuIGtKTnIY=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@ -31,7 +31,7 @@ stdenv.mkDerivation {
meta = with lib; { meta = with lib; {
description = "A tiling window manager"; description = "A tiling window manager";
homepage = "https://github.com/conformal/spectrwm"; homepage = "https://github.com/conformal/spectrwm";
maintainers = with maintainers; [ christianharke ]; maintainers = with maintainers; [ rake5k ];
license = licenses.isc; license = licenses.isc;
platforms = platforms.all; platforms = platforms.all;
@ -45,4 +45,4 @@ stdenv.mkDerivation {
''; '';
}; };
} })