2019-01-30 22:00:12 +00:00
|
|
|
{
|
2021-01-11 07:54:33 +00:00
|
|
|
lib, stdenv, makeWrapper, fetchFromGitHub,
|
2019-07-06 10:56:55 +01:00
|
|
|
imagemagick, i3lock-color, xdpyinfo, xrandr, bc, feh, procps, xrdb
|
2019-01-30 22:00:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "betterlockscreen";
|
2021-05-31 02:03:16 +01:00
|
|
|
version = "3.2.0";
|
2019-01-30 22:00:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pavanjadhaw";
|
|
|
|
repo = "betterlockscreen";
|
|
|
|
rev = version;
|
2021-05-31 02:03:16 +01:00
|
|
|
sha256 = "sha256-UOMCTHtw1C+MiJL6AQ+8gqmmbqrs1QTzEi1Ar03PyMs=";
|
2019-01-30 22:00:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2021-05-26 09:55:20 +01:00
|
|
|
patches = [ ./replace-i3lock.patch ];
|
|
|
|
|
2019-07-06 10:56:55 +01:00
|
|
|
installPhase =
|
|
|
|
let
|
|
|
|
PATH =
|
2021-01-15 13:21:58 +00:00
|
|
|
lib.makeBinPath
|
2019-07-06 10:56:55 +01:00
|
|
|
[imagemagick i3lock-color xdpyinfo xrandr bc feh procps xrdb];
|
2019-01-30 22:00:12 +00:00
|
|
|
in ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp betterlockscreen $out/bin/betterlockscreen
|
|
|
|
wrapProgram "$out/bin/betterlockscreen" --prefix PATH : "$out/bin:${PATH}"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "A simple minimal lock screen which allows you to cache images with different filters and lockscreen with blazing speed";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pavanjadhaw/betterlockscreen";
|
2019-01-30 22:00:12 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
|
|
};
|
|
|
|
}
|