nixpkgs/pkgs/by-name/xw/xwinwrap/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

56 lines
1.9 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, stdenv, fetchbzr, xorg }:
stdenv.mkDerivation rec {
pname = "xwinwrap";
version = "4";
src = fetchbzr {
url = "https://code.launchpad.net/~shantanu-goel/xwinwrap/devel";
rev = version;
sha256 = "1annhqc71jcgx5zvcy31c1c488ygx4q1ygrwyy2y0ww743smbchw";
};
buildInputs = [
xorg.libX11
xorg.libXext
xorg.libXrender
];
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 = "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 didnt work. So if you did a minimize all or go to
desktop kind of thing, your wallpaper got minimized as well.
- The geometry option didnt 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 = [ ];
platforms = platforms.linux;
mainProgram = "xwinwrap";
};
}