nixpkgs/pkgs/by-name/mu/multilockscreen/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

49 lines
1.4 KiB
Nix

{
lib, stdenv, makeWrapper, fetchFromGitHub, writeShellScriptBin,
imagemagick, i3lock-color, xdpyinfo, xrandr, bc, feh, procps, xrdb, xset,
gnused, gnugrep, coreutils
}:
let
i3lock = writeShellScriptBin "i3lock" ''
${i3lock-color}/bin/i3lock-color "$@"
'';
binPath = lib.makeBinPath [
imagemagick i3lock
xdpyinfo xrandr xset
bc feh procps xrdb
gnused gnugrep coreutils
];
in
stdenv.mkDerivation rec {
pname = "multilockscreen";
version = "1.2.0";
src = fetchFromGitHub {
owner = "jeffmhubbard";
repo = pname;
rev = "v${version}";
sha256 = "1bfpbazvhaz9x356nsghz0czysh9b75g79cd9s35v0x0rrzdr9qj";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp multilockscreen $out/bin/multilockscreen
wrapProgram "$out/bin/multilockscreen" --prefix PATH : "${binPath}"
'';
meta = with lib; {
description = "Wrapper script for i3lock-color";
mainProgram = "multilockscreen";
longDescription = ''
multilockscreen is a wrapper script for i3lock-color.
It allows you to cache background images for i3lock-color with a variety of different effects and adds a stylish indicator.
'';
homepage = "https://github.com/jeffmhubbard/multilockscreen";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kylesferrazza ];
};
}