-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved outside lisp-modules to a separate package, so as to re-use its Makefile-based build-system and make a step in the direction of leaving just development libraries in lisp-modules.
- Loading branch information
Showing
4 changed files
with
55 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
stdenv, | ||
lib, | ||
fetchFromGitHub, | ||
autoreconfHook, | ||
sbcl, | ||
texinfo, | ||
}: | ||
|
||
stdenv.mkDerivation (finalAttrs: { | ||
pname = "stumpwm"; | ||
version = "24.11"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "stumpwm"; | ||
repo = "stumpwm"; | ||
rev = "${finalAttrs.version}"; | ||
hash = "sha256-Ba2HcAmNcZvnqU0jpLTxsBe8L+4aHbO/oM4Bp/IYEC0="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
autoreconfHook | ||
sbcl | ||
texinfo | ||
]; | ||
|
||
doCheck = true; | ||
|
||
postConfigure = '' | ||
export ASDF_OUTPUT_TRANSLATIONS=$(pwd):$(pwd) | ||
''; | ||
|
||
meta = { | ||
description = "Tiling, keyboard driven window manager"; | ||
homepage = "https://stumpwm.github.io/"; | ||
license = lib.licenses.gpl2Plus; | ||
mainProgram = "stumpwm"; | ||
maintainers = lib.teams.lisp.members; | ||
platforms = lib.platforms.unix; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters