2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchbzr, xlibsWrapper }:
|
2017-09-25 04:01:16 +01:00
|
|
|
|
|
2021-07-14 16:10:11 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
|
pname = "xwinwrap";
|
2021-07-14 16:10:11 +01:00
|
|
|
|
version = "4";
|
2017-09-25 04:01:16 +01:00
|
|
|
|
|
|
|
|
|
src = fetchbzr {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
url = "https://code.launchpad.net/~shantanu-goel/xwinwrap/devel";
|
2017-09-25 04:01:16 +01:00
|
|
|
|
rev = version;
|
|
|
|
|
sha256 = "1annhqc71jcgx5zvcy31c1c488ygx4q1ygrwyy2y0ww743smbchw";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
|
xlibsWrapper
|
2017-09-25 04:01:16 +01:00
|
|
|
|
];
|
|
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
|
buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''
|
2017-09-25 04:01:16 +01:00
|
|
|
|
make all64
|
2018-08-20 20:11:29 +01:00
|
|
|
|
'' else if stdenv.hostPlatform.system == "i686-linux" then ''
|
2017-09-25 04:01:16 +01:00
|
|
|
|
make all32
|
2018-08-20 20:11:29 +01:00
|
|
|
|
'' else throw "xwinwrap is not supported on ${stdenv.hostPlatform.system}";
|
2017-09-25 04:01:16 +01:00
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
mv */xwinwrap $out/bin
|
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2017-09-25 04:01:16 +01:00
|
|
|
|
description = "A utility that allows you to use an animated X window as the wallpaper";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
XWinWrap is a small utility written a loooong time ago that allowed you to
|
|
|
|
|
stick most of the apps to your desktop background. What this meant was you
|
|
|
|
|
could use an animated screensaver (like glmatrix, electric sheep, etc) or
|
|
|
|
|
even a movie, and use it as your wallpaper. But only one version of this
|
|
|
|
|
app was ever released, and it had a few problems, like:
|
|
|
|
|
|
|
|
|
|
- Well, sticking didn’t work. So if you did a “minimize all” or “go to
|
|
|
|
|
desktop” kind of thing, your “wallpaper” got minimized as well.
|
|
|
|
|
|
|
|
|
|
- The geometry option didn’t work, so you could not create, e.g., a small
|
|
|
|
|
matrix window surrounded by your original wallpaper.
|
|
|
|
|
|
|
|
|
|
Seeing no-one picking it up, I decided to give it a bit of polish last
|
|
|
|
|
weekend by fixing the above problems and also add a few features. And here
|
|
|
|
|
it is, in its new avatar “Shantz XWinWrap”.
|
|
|
|
|
'';
|
|
|
|
|
license = licenses.hpnd;
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://shantanugoel.com/2008/09/03/shantz-xwinwrap/";
|
2017-09-25 04:01:16 +01:00
|
|
|
|
maintainers = with maintainers; [ infinisil ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|