sawfish: cleanup
This commit is contained in:
parent
bd36a2da98
commit
da0c48706a
@ -1,25 +1,32 @@
|
||||
{ stdenv, fetchurl
|
||||
, pkgconfig, which, autoreconfHook
|
||||
, rep-gtk, pango, gdk-pixbuf-xlib
|
||||
, imlib, gettext, texinfo
|
||||
, libXinerama, libXrandr, libXtst, libICE, libSM
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, which
|
||||
, autoreconfHook
|
||||
, rep-gtk
|
||||
, pango
|
||||
, gdk-pixbuf-xlib
|
||||
, imlib
|
||||
, gettext
|
||||
, texinfo
|
||||
, libXinerama
|
||||
, libXrandr
|
||||
, libXtst
|
||||
, libICE
|
||||
, libSM
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "sawfish";
|
||||
version = "1.12.90";
|
||||
sourceName = "sawfish_${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.tuxfamily.org/sawfish/${sourceName}.tar.xz";
|
||||
url = "https://download.tuxfamily.org/sawfish/${pname}_${version}.tar.xz";
|
||||
sha256 = "18p8srqqj9vjffg13qhspfz2gr1h4vfs10qzlv89g76r289iam31";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ which
|
||||
rep-gtk pango gdk-pixbuf-xlib imlib gettext texinfo
|
||||
libXinerama libXrandr libXtst libICE libSM
|
||||
@ -31,14 +38,15 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
for i in $out/lib/sawfish/sawfish-menu $out/bin/sawfish-about $out/bin/sawfish-client $out/bin/sawfish-config $out/bin/sawfish; do
|
||||
for i in $out/lib/sawfish/sawfish-menu $out/bin/sawfish-about \
|
||||
$out/bin/sawfish-client $out/bin/sawfish-config $out/bin/sawfish; do
|
||||
wrapProgram $i \
|
||||
--prefix REP_DL_LOAD_PATH : "$out/lib/rep" \
|
||||
--set REP_LOAD_PATH "$out/share/sawfish/lisp"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "An extensible, Lisp-based window manager";
|
||||
longDescription = ''
|
||||
Sawfish is an extensible window manager using a Lisp-based scripting language.
|
||||
@ -47,7 +55,7 @@ stdenv.mkDerivation rec {
|
||||
All high-level WM functions are implemented in Lisp for future extensibility
|
||||
or redefinition.
|
||||
'';
|
||||
homepage = "http://sawfish.wikia.com";
|
||||
homepage = "https://sawfish.fandom.com/wiki/Main_Page";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user