1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

bibata-cursors-translucent: init

This commit is contained in:
Will Dietz 2019-10-22 20:39:07 -05:00
parent 06be39a921
commit be990d5302
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen }:
stdenvNoCC.mkDerivation rec {
pname = "bibata-cursors-translucent";
version = "unstable-2019-09-13";
src = fetchFromGitHub {
owner = "Silicasandwhich";
repo = "Bibata_Cursor_Translucent";
rev = "2eed979d817148817ea6bca15c594809aa9c2cb9";
sha256 = "1s688v40xx9jbvfncb4kgfnnxkmknji7igqx7c4q1ly9s7imbd1f";
};
postPatch = ''
patchShebangs .
substituteInPlace build.sh --replace "gksu " ""
'';
nativeBuildInputs = [
gnome-themes-extra
inkscape
xcursorgen
];
buildPhase = ''
HOME="$NIX_BUILD_ROOT" ./build.sh
'';
installPhase = ''
install -dm 0755 $out/share/icons
cp -pr Bibata_* $out/share/icons/
'';
meta = with stdenvNoCC.lib; {
description = "Translucent Varient of the Material Based Cursor";
homepage = https://github.com/Silicasandwhich/Bibata_Cursor_Translucent;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -16844,6 +16844,7 @@ in
bibata-cursors = callPackage ../data/icons/bibata-cursors { };
bibata-extra-cursors = callPackage ../data/icons/bibata-cursors/extra.nix { };
bibata-cursors-translucent = callPackage ../data/icons/bibata-cursors/translucent.nix { };
brise = callPackage ../data/misc/brise { };