clfswm: remove after being marked broken for over two years
It was marked in commit 9ae0e6633e
by Joachim Fasting on 2016-03-18 (commited on 2016-03-19)
This commit is contained in:
parent
d8393bc040
commit
7f05ada11a
3 changed files with 0 additions and 66 deletions
|
@ -1,51 +0,0 @@
|
||||||
{ lib, stdenv, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4
|
|
||||||
, makeWrapper }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
pname = "clfswm";
|
|
||||||
version = "unstable-2016-11-12";
|
|
||||||
|
|
||||||
src = fetchgit {
|
|
||||||
url = "https://gitlab.common-lisp.net/clfswm/clfswm.git";
|
|
||||||
rev = "3c7721dba6339ebb4f8c8d7ce2341740fa86f837";
|
|
||||||
sha256 = "0hynzh3a1zr719cxfb0k4cvh5lskzs616hwn7p942isyvhwzhynd";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
texinfo4 makeWrapper autoconf
|
|
||||||
sbcl
|
|
||||||
lispPackages.clx
|
|
||||||
lispPackages.cl-ppcre
|
|
||||||
xdpyinfo
|
|
||||||
];
|
|
||||||
|
|
||||||
patches = [ ./require-clx.patch ];
|
|
||||||
|
|
||||||
# Stripping destroys the generated SBCL image
|
|
||||||
dontStrip = true;
|
|
||||||
|
|
||||||
configurePhase = ''
|
|
||||||
substituteInPlace load.lisp --replace \
|
|
||||||
";; (setf *contrib-dir* \"/usr/local/lib/clfswm/\")" \
|
|
||||||
"(setf *contrib-dir* \"$out/lib/clfswm/\")"
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -pv $out/bin
|
|
||||||
make DESTDIR=$out install
|
|
||||||
|
|
||||||
# Paths in the compressed image $out/bin/clfswm are not
|
|
||||||
# recognized by Nix. Add explicit reference here.
|
|
||||||
mkdir $out/nix-support
|
|
||||||
echo ${xdpyinfo} ${lispPackages.clx} ${lispPackages.cl-ppcre} > $out/nix-support/depends
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "A(nother) Common Lisp FullScreen Window Manager";
|
|
||||||
homepage = "https://common-lisp.net/project/clfswm/";
|
|
||||||
license = licenses.gpl3;
|
|
||||||
maintainers = with maintainers; [ robgssp ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
broken = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/load.lisp b/load.lisp
|
|
||||||
index c8c4cf0..8c9ca2e 100644
|
|
||||||
--- a/load.lisp
|
|
||||||
+++ b/load.lisp
|
|
||||||
@@ -111,6 +111,8 @@ from $XDG_CONFIG_HOME/clfswm/clfswmrc")
|
|
||||||
;;;------------------
|
|
||||||
(load-info "Requiring CLX")
|
|
||||||
|
|
||||||
+(require 'clx)
|
|
||||||
+
|
|
||||||
;;; Loading clisp dynamic module. This part needs clisp >= 2.50
|
|
||||||
;;#+(AND CLISP (not CLX))
|
|
||||||
;;(when (fboundp 'require)
|
|
|
@ -25198,8 +25198,6 @@ with pkgs;
|
||||||
inherit (xorg) libSM;
|
inherit (xorg) libSM;
|
||||||
};
|
};
|
||||||
|
|
||||||
clfswm = callPackage ../applications/window-managers/clfswm { };
|
|
||||||
|
|
||||||
clickshare-csc1 = callPackage ../applications/video/clickshare-csc1 { };
|
clickshare-csc1 = callPackage ../applications/video/clickshare-csc1 { };
|
||||||
|
|
||||||
cligh = python3Packages.callPackage ../development/tools/github/cligh {};
|
cligh = python3Packages.callPackage ../development/tools/github/cligh {};
|
||||||
|
|
Loading…
Reference in a new issue