bibata-cursors: init at 0.4.1 (#51871)
This commit is contained in:
parent
f8d0069dc6
commit
47f008676f
41
pkgs/data/icons/bibata-cursors/default.nix
Normal file
41
pkgs/data/icons/bibata-cursors/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ fetchFromGitHub, gnome-themes-extra, inkscape, stdenv, xcursorgen }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bibata-cursors-${version}";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "KaizIqbal";
|
||||||
|
repo = "Bibata_Cursor";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "14gvpjp4gv0m59qr8wls7xs5yjx5llldyzack5kg5cg2mzk2nsml";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 stdenv.lib; {
|
||||||
|
description = "Material Based Cursor";
|
||||||
|
homepage = https://github.com/KaizIqbal/Bibata_Cursor;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ rawkode ];
|
||||||
|
};
|
||||||
|
}
|
@ -15281,6 +15281,8 @@ in
|
|||||||
|
|
||||||
bgnet = callPackage ../data/documentation/bgnet { };
|
bgnet = callPackage ../data/documentation/bgnet { };
|
||||||
|
|
||||||
|
bibata-cursors = callPackage ../data/icons/bibata-cursors { };
|
||||||
|
|
||||||
brise = callPackage ../data/misc/brise { };
|
brise = callPackage ../data/misc/brise { };
|
||||||
|
|
||||||
inherit (kdeFrameworks) breeze-icons;
|
inherit (kdeFrameworks) breeze-icons;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user