mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
Stumpwm: Fix contrib modules, install stumpish.
This was caused by multiple things: First, the module-path was wrong in the release. Second, when modules tried to load stumpwm, asdf searched for its sources in /tmp/nix-build-*. Both of these issues are fixed by a nix-specific patch that tells adsf to *never* try to load stumpwm (and others) from the filesystem. This is fine as those modules are already available in the image anyway. We also refactor some stuff & clean up the build. Stumpish works now too.
This commit is contained in:
parent
5c866dc5e9
commit
4eaf2f1114
@ -1,31 +0,0 @@
|
||||
{ stdenv, fetchgit }:
|
||||
|
||||
let
|
||||
tag = "0.9.8";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stumpwmContrib-${tag}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/stumpwm/stumpwm";
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm";
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -a $src/contrib $out/
|
||||
cp -a $src/contrib/stumpish $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Extension modules for the StumpWM";
|
||||
homepage = https://github.com/stumpwm/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ _1126 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1,46 +1,75 @@
|
||||
{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4, makeWrapper, stumpwmContrib }:
|
||||
{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4
|
||||
, makeWrapper , rlwrap, gnused, gnugrep, coreutils, xprop
|
||||
, extraModulePaths ? [] }:
|
||||
|
||||
let
|
||||
tag = "0.9.9";
|
||||
version = "0.9.9";
|
||||
contrib = (fetchgit {
|
||||
url = "https://github.com/stumpwm/stumpwm-contrib.git";
|
||||
rev = "e139885fffcedaeba4b263e4575daae4364cad52";
|
||||
sha256 = "fe75bb27538a56f2d213fb21e06a8983699e129a10da7014ddcf6eed5cd965f8";
|
||||
});
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stumpwm-${tag}";
|
||||
name = "stumpwm-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/stumpwm/stumpwm";
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "05fkng2wlmhy3kb9zhrrv9zpa16g2p91p5y0wvmwkppy04cw04ps";
|
||||
};
|
||||
src = fetchgit {
|
||||
url = "https://github.com/stumpwm/stumpwm";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "05fkng2wlmhy3kb9zhrrv9zpa16g2p91p5y0wvmwkppy04cw04ps";
|
||||
};
|
||||
|
||||
buildInputs = [ texinfo4 autoconf lispPackages.clx lispPackages.cl-ppcre sbcl makeWrapper stumpwmContrib ];
|
||||
buildInputs = [
|
||||
texinfo4 makeWrapper autoconf
|
||||
sbcl
|
||||
lispPackages.clx
|
||||
lispPackages.cl-ppcre
|
||||
xdpyinfo
|
||||
];
|
||||
|
||||
phases = [ "unpackPhase" "preConfigurePhase" "configurePhase" "installPhase" ];
|
||||
# NOTE: The patch needs an update for the next release.
|
||||
# `(stumpwm:set-module-dir "@MODULE_DIR@")' needs to be in it.
|
||||
patches = [ ./fix-module-path.patch ];
|
||||
|
||||
preConfigurePhase = ''
|
||||
$src/autogen.sh
|
||||
mkdir -pv $out/bin
|
||||
'';
|
||||
# Stripping destroys the generated SBCL image
|
||||
dontStrip = true;
|
||||
|
||||
configurePhase = ''
|
||||
./configure --prefix=$out --with-contrib-dir=${stumpwmContrib}/contrib
|
||||
'';
|
||||
configurePhase = ''
|
||||
./autogen.sh
|
||||
./configure --prefix=$out --with-module-dir=$out/share/stumpwm/modules
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
make
|
||||
make install
|
||||
# For some reason, stumpwmContrib is not retained as a runtime
|
||||
# dependency (probably because $out/bin/stumpwm is compressed or
|
||||
# obfuscated in some way). Thus we add an explicit reference here.
|
||||
mkdir $out/nix-support
|
||||
echo ${stumpwmContrib} > $out/nix-support/stumpwm-contrib
|
||||
'';
|
||||
preBuild = ''
|
||||
cp -r --no-preserve=mode ${contrib} modules
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $out/bin
|
||||
make install
|
||||
|
||||
mkdir -p $out/share/stumpwm/modules
|
||||
cp -r modules/* $out/share/stumpwm/modules/
|
||||
for d in ${stdenv.lib.concatStringsSep " " extraModulePaths}; do
|
||||
cp -r --no-preserve=mode "$d" $out/share/stumpwm/modules/
|
||||
done
|
||||
|
||||
# Copy stumpish;
|
||||
cp $out/share/stumpwm/modules/util/stumpish/stumpish $out/bin/
|
||||
chmod +x $out/bin/stumpish
|
||||
wrapProgram $out/bin/stumpish \
|
||||
--prefix PATH ":" "${rlwrap}/bin:${gnused}/bin:${gnugrep}/bin:${coreutils}/bin:${xprop}/bin"
|
||||
|
||||
# Paths in the compressed image $out/bin/stumpwm are not
|
||||
# recognized by Nix. Add explicit reference here.
|
||||
mkdir $out/nix-support
|
||||
echo ${xdpyinfo} > $out/nix-support/xdpyinfo
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tiling window manager for X11";
|
||||
homepage = https://github.com/stumpwm/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ _1126 ];
|
||||
maintainers = with maintainers; [ _1126 the-kenny ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -0,0 +1,16 @@
|
||||
diff --git a/make-image.lisp.in b/make-image.lisp.in
|
||||
index 121e9d6..2210242 100644
|
||||
--- a/make-image.lisp.in
|
||||
+++ b/make-image.lisp.in
|
||||
@@ -2,7 +2,10 @@
|
||||
|
||||
(load "load-stumpwm.lisp")
|
||||
|
||||
-#-ecl (stumpwm:set-module-dir "@CONTRIB_DIR@")
|
||||
+(setf asdf::*immutable-systems*
|
||||
+ (uiop:list-to-hash-set (asdf:already-loaded-systems)))
|
||||
+
|
||||
+#-ecl (stumpwm:set-module-dir "@MODULE_DIR@")
|
||||
|
||||
#+sbcl
|
||||
(sb-ext:save-lisp-and-die "stumpwm" :toplevel (lambda ()
|
@ -11834,7 +11834,6 @@ let
|
||||
|
||||
stp = callPackage ../applications/science/logic/stp {};
|
||||
|
||||
stumpwmContrib = callPackage ../applications/window-managers/stumpwm/contrib.nix { };
|
||||
stumpwm = callPackage ../applications/window-managers/stumpwm {
|
||||
sbcl = sbcl_1_2_5;
|
||||
lispPackages = lispPackagesFor (wrapLisp sbcl_1_2_5);
|
||||
|
Loading…
Reference in New Issue
Block a user