1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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>
This commit is contained in:
Christian Harke 2023-11-22 00:36:56 +01:00 committed by Weijia Wang
parent 916666515a
commit 4585058fc6

View file

@ -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 {
'';
};
}
})