4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
56 lines
1.9 KiB
Nix
56 lines
1.9 KiB
Nix
{ lib, stdenv, fetchbzr, xlibsWrapper }:
|
||
|
||
let
|
||
version = "4";
|
||
in
|
||
stdenv.mkDerivation {
|
||
pname = "xwinwrap";
|
||
inherit version;
|
||
|
||
src = fetchbzr {
|
||
url = "https://code.launchpad.net/~shantanu-goel/xwinwrap/devel";
|
||
rev = version;
|
||
sha256 = "1annhqc71jcgx5zvcy31c1c488ygx4q1ygrwyy2y0ww743smbchw";
|
||
};
|
||
|
||
buildInputs = [
|
||
xlibsWrapper
|
||
];
|
||
|
||
buildPhase = if stdenv.hostPlatform.system == "x86_64-linux" then ''
|
||
make all64
|
||
'' else if stdenv.hostPlatform.system == "i686-linux" then ''
|
||
make all32
|
||
'' else throw "xwinwrap is not supported on ${stdenv.hostPlatform.system}";
|
||
|
||
installPhase = ''
|
||
mkdir -p $out/bin
|
||
mv */xwinwrap $out/bin
|
||
'';
|
||
|
||
meta = with lib; {
|
||
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;
|
||
homepage = "https://shantanugoel.com/2008/09/03/shantz-xwinwrap/";
|
||
maintainers = with maintainers; [ infinisil ];
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|