vimix-cursor-theme: init at 2020-02-24

+35
+33
pkgs/data/icons/vimix-cursor-theme/default.nix
··· 1 + { stdenvNoCC 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "vimix-cursor-theme"; 8 + version = "2020-02-24"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "vinceliuice"; 12 + repo = "Vimix-cursors"; 13 + rev = version; 14 + hash = "sha256-TfcDer85+UOtDMJVZJQr81dDy4ekjYgEvH1RE1IHMi4="; 15 + }; 16 + 17 + installPhase = '' 18 + sed -i 's/Vimix Cursors$/Vimix-Cursors/g' dist{,-white}/index.theme 19 + 20 + install -dm 755 $out/share/icons/Vimix-Cursors{,-White} 21 + 22 + cp -dr --no-preserve='ownership' dist/* $out/share/icons/Vimix-Cursors 23 + cp -dr --no-preserve='ownership' dist-white/* $out/share/icons/Vimix-Cursors-White 24 + ''; 25 + 26 + meta = with lib; { 27 + description = "An x-cursor theme inspired by Materia design and based on capitaine-cursors"; 28 + homepage = "https://github.com/vinceliuice/Vimix-cursors"; 29 + license = licenses.gpl3Only; 30 + platforms = platforms.all; 31 + maintainers = with maintainers; [ redxtech ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 30406 30406 30407 30407 victor-mono = callPackage ../data/fonts/victor-mono { }; 30408 30408 30409 + vimix-cursor-theme = callPackage ../data/icons/vimix-cursor-theme { }; 30410 + 30409 30411 vimix-gtk-themes = callPackage ../data/themes/vimix { 30410 30412 inherit (gnome) gnome-shell; 30411 30413 };