Skip to content

Commit

Permalink
i3lock-fancy-rapid: init at 2019-10-09
Browse files Browse the repository at this point in the history
  • Loading branch information
NickHu committed Aug 25, 2020
1 parent 0c7803f commit af2adc1
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/applications/window-managers/i3/lock-fancy-rapid.nix
@@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, xorg, i3lock }:

stdenv.mkDerivation rec {
pname = "i3lock-fancy-rapid";
version = "2019-10-09";
src = fetchFromGitHub {
owner = "yvbbrjdr";
repo = "i3lock-fancy-rapid";
rev = "c67f09bc8a48798c7c820d7d4749240b10865ce0";
sha256 = "0jhvlj6v6wx70239pgkjxd42z1s2bzfg886ra6n1rzsdclf4rkc6";
};

buildInputs = [ xorg.libX11 ];
propagatedBuildInputs = [ i3lock ];

postPatch = ''
substituteInPlace i3lock-fancy-rapid.c \
--replace '"i3lock"' '"${i3lock}/bin/i3lock"'
'';

installPhase = ''
install -D i3lock-fancy-rapid $out/bin/i3lock-fancy-rapid
'';

meta = with stdenv.lib; {
description = "A faster implementation of i3lock-fancy";
homepage = "https://github.com/yvbbrjdr/i3lock-fancy-rapid";
maintainers = with maintainers; [ nickhu ];
license = licenses.bsd3;
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -20907,6 +20907,8 @@ in

i3lock-fancy = callPackage ../applications/window-managers/i3/lock-fancy.nix { };

i3lock-fancy-rapid = callPackage ../applications/window-managers/i3/lock-fancy-rapid.nix { };

i3lock-pixeled = callPackage ../misc/screensavers/i3lock-pixeled { };

betterlockscreen = callPackage ../misc/screensavers/betterlockscreen {
Expand Down

0 comments on commit af2adc1

Please sign in to comment.