mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
e4c43186c4
Most icons themes just copy a bunch of files from the source to the installation directory and therefore work perfectly fine with stdenvNoCC. All themes in pkgs/data/icons that still use stdenv after this change are failing to build with stdenvNoCC.
27 lines
734 B
Nix
27 lines
734 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "bibata-cursors-translucent";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Silicasandwhich";
|
|
repo = "Bibata_Cursor_Translucent";
|
|
rev = "v${version}";
|
|
sha256 = "1ddnwqkxricnd731blckcxvksbgql8k4pfiz65591p81n5095k8y";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -dm 0755 $out/share/icons
|
|
cp -pr Bibata_* $out/share/icons/
|
|
'';
|
|
|
|
meta = with 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 AdsonCicilioti ];
|
|
};
|
|
}
|