summary refs log tree commit diff
path: root/pkgs/misc/screensavers/i3lock-pixeled/default.nix
blob: 67cb0a4ca6d25d26576f0c863e274e1b82475e8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, pkgs, fetchurl }:

stdenv.mkDerivation rec {
  name = "i3lock-pixeled-${version}";
  version = "1.1.0";

  src = fetchurl {
    url = "https://github.com/Ma27/i3lock-pixeled/archive/${version}.tar.gz";
    sha256 = "046qbx4qvcc66h53h4mm9pyjj9gjc6dzy38a0f0jc5a84xbivh7k";
  };

  propagatedBuildInputs = with pkgs; [
    i3lock
    imagemagick
    scrot
    playerctl
  ];

  makeFlags = [
    "PREFIX=$(out)/bin"
  ];

  patchPhase = ''
    substituteInPlace i3lock-pixeled \
       --replace i3lock    "${pkgs.i3lock}/bin/i3lock" \
       --replace convert   "${pkgs.imagemagick}/bin/convert" \
       --replace scrot     "${pkgs.scrot}/bin/scrot" \
       --replace playerctl "${pkgs.playerctl}/bin/playerctl"
  '';

  meta = with stdenv.lib; {
    description = "Simple i3lock helper which pixels a screenshot by scaling it down and up to get a pixeled version of the screen when the lock is active.";
    homepage = https://github.com/Ma27/i3lock-pixeled;
    license = licenses.mit;
    platform = platforms.linux;
    maintainers = with maintainers; [ ma27 ];
  };
}