bibata-extra-cursors: unstable-2018-10-28 -> 0.3, sync w/bibata-cursors

This commit is contained in:
Will Dietz 2020-01-16 17:23:57 -06:00
parent 509e0a0057
commit 2d826681e8
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

View File

@ -1,25 +1,33 @@
{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen }: { stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
stdenvNoCC.mkDerivation rec { let
py = python3.withPackages(ps: [ ps.pillow ]);
in stdenvNoCC.mkDerivation rec {
pname = "bibata-extra-cursors"; pname = "bibata-extra-cursors";
version = "unstable-2018-10-28"; version = "0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "KaizIqbal"; owner = "KaizIqbal";
repo = "Bibata_Extra_Cursor"; repo = "Bibata_Extra_Cursor";
rev = "66fb64b8dbe830e3f7ba2c2bdc4dacae7c438789"; rev = "v${version}";
sha256 = "1xb7v06sbxbwzd7cnghv9c55lpbbkcaf1nswdrqy87gd0bnpdd2n"; sha256 = "1bh945hvakbh985jkr6g6x0myw3k49pvn24m1clvqdv35v65nfxk";
}; };
postPatch = '' postPatch = ''
patchShebangs . patchShebangs .
substituteInPlace build.sh --replace "gksu " "" substituteInPlace build.sh --replace "sudo" ""
# Don't generate windows cursors,
# they aren't used and aren't installed
# by the project's install script anyway.
echo "exit 0" > w32-make.sh
''; '';
nativeBuildInputs = [ nativeBuildInputs = [
gnome-themes-extra gnome-themes-extra
inkscape inkscape
xcursorgen xcursorgen
py
]; ];
buildPhase = '' buildPhase = ''
@ -28,7 +36,9 @@ stdenvNoCC.mkDerivation rec {
installPhase = '' installPhase = ''
install -dm 0755 $out/share/icons install -dm 0755 $out/share/icons
cp -pr Bibata_* $out/share/icons/ for x in Bibata_*; do
cp -pr $x/out/X11/$x $out/share/icons/
done
''; '';
meta = with stdenvNoCC.lib; { meta = with stdenvNoCC.lib; {