2016-05-15 05:46:50 +02:00
|
|
|
{ stdenv, fetchFromGitHub, coreutils, scrot, imagemagick, gawk
|
|
|
|
, i3lock-color
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
rev = "b7196aaff72b90bb6ea0464a9f7b37d140db3230";
|
|
|
|
name = "i3lock-fancy-2016-05-05_rev${builtins.substring 0 7 rev}";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "meskarune";
|
|
|
|
repo = "i3lock-fancy";
|
|
|
|
inherit rev;
|
|
|
|
sha256 = "0az43nqhmbniih3yw9kz5lnky0n7mxylvklsib76s4l2alf6i3ps";
|
|
|
|
};
|
|
|
|
patchPhase = ''
|
2016-05-24 12:38:23 +02:00
|
|
|
sed -i -e "s|(mktemp)|(${coreutils}/bin/mktemp)|" lock
|
|
|
|
sed -i -e "s|'rm -f |'${coreutils}/bin/rm -f |" lock
|
|
|
|
sed -i -e "s|scrot -z |${scrot}/bin/scrot -z |" lock
|
2016-05-22 13:41:15 +02:00
|
|
|
sed -i -e "s|convert |${imagemagick.out}/bin/convert |" lock
|
2016-05-24 12:38:23 +02:00
|
|
|
sed -i -e "s|awk -F|${gawk}/bin/awk -F|" lock
|
|
|
|
sed -i -e "s| awk | ${gawk}/bin/awk |" lock
|
|
|
|
sed -i -e "s|i3lock -n |${i3lock-color}/bin/i3lock-color -n |" lock
|
|
|
|
sed -i -e 's|ICON="$SCRIPTPATH/lockdark.png"|ICON="'$out'/share/i3lock-fancy/lockdark.png"|' lock
|
|
|
|
sed -i -e 's|ICON="$SCRIPTPATH/lock.png"|ICON="'$out'/share/i3lock-fancy/lock.png"|' lock
|
2016-05-15 05:46:50 +02:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/share/i3lock-fancy
|
|
|
|
cp lock $out/bin/i3lock-fancy
|
|
|
|
cp lock*.png $out/share/i3lock-fancy
|
|
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "i3lock is a bash script that takes a screenshot of the desktop, blurs the background and adds a lock icon and text.";
|
|
|
|
homepage = https://github.com/meskarune/i3lock-fancy;
|
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|