3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/screensavers/xscreensaver/default.nix

68 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper
2021-04-11 21:05:23 +01:00
, pkg-config, intltool
, perl, gettext, libX11, libXext, libXi, libXt
, libXft, libXinerama, libXrandr, libXxf86vm, libGL, libGLU, gle
, gtk2, gdk-pixbuf, gdk-pixbuf-xlib, libxml2, pam
, systemd, coreutils
, forceInstallAllHacks ? false
2021-04-11 21:05:23 +01:00
, withSystemd ? stdenv.isLinux
}:
stdenv.mkDerivation rec {
2021-10-28 02:38:04 +01:00
version = "6.02";
pname = "xscreensaver";
src = fetchurl {
url = "https://www.jwz.org/${pname}/${pname}-${version}.tar.gz";
2021-10-28 02:38:04 +01:00
sha256 = "sha256-Xm1ssJAzrVYs/m1Gv5MS5EUfeUa+2KRnGqk0TfkZMYQ=";
};
2021-04-11 21:05:23 +01:00
nativeBuildInputs = [
pkg-config intltool makeWrapper
2021-04-11 21:05:23 +01:00
];
buildInputs = [
perl gettext libX11 libXext libXi libXt
libXft libXinerama libXrandr libXxf86vm libGL libGLU gle
gtk2 gdk-pixbuf gdk-pixbuf-xlib libxml2 pam
] ++ lib.optional withSystemd systemd;
preConfigure = ''
# Fix installation paths for GTK resources.
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
-i driver/Makefile.in po/Makefile.in.in
'';
configureFlags = [
"--with-app-defaults=${placeholder "out"}/share/xscreensaver/app-defaults"
];
2021-11-12 00:02:36 +00:00
# "marbling" has NEON code that mixes signed and unsigned vector types
NIX_CFLAGS_COMPILE = lib.optional (with stdenv.hostPlatform; isAarch64 || isAarch32) "-flax-vector-conversions";
2021-04-11 21:05:23 +01:00
postInstall = ''
for bin in $out/bin/*; do
wrapProgram "$bin" \
--prefix PATH : "$out/libexec/xscreensaver" \
--prefix PATH : "${lib.makeBinPath [ coreutils ]}"
done
'' + lib.optionalString forceInstallAllHacks ''
2021-04-11 21:05:23 +01:00
make -j$NIX_BUILD_CORES -C hacks/glx dnalogo
cat hacks/Makefile.in \
| grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -j$NIX_BUILD_CORES -C hacks
cat hacks/glx/Makefile.in \
| grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -j$NIX_BUILD_CORES -C hacks/glx
cp -f $(find hacks -type f -perm -111 "!" -name "*.*" ) "$out/libexec/xscreensaver"
'';
meta = {
2020-03-26 06:13:34 +00:00
homepage = "https://www.jwz.org/xscreensaver/";
description = "A set of screensavers";
2021-04-11 21:05:23 +01:00
license = lib.licenses.mit;
2021-01-15 13:21:58 +00:00
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.unix; # Once had cygwin problems
downloadPage = "https://www.jwz.org/xscreensaver/download.html";
2014-09-02 11:25:04 +01:00
updateWalker = true;
};
}