forked from mirrors/nixpkgs
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
48 lines
1.3 KiB
Nix
48 lines
1.3 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 = stdenv.lib.makeBinPath [
|
|
imagemagick i3lock
|
|
xdpyinfo xrandr xset
|
|
bc feh procps xrdb
|
|
gnused gnugrep coreutils
|
|
];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "multilockscreen";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeffmhubbard";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0gmnrq7ibbhiwsn7mfi2r71fwm6nvhiwf4wsyz44cscm474z83p0";
|
|
};
|
|
|
|
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";
|
|
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 ];
|
|
};
|
|
}
|