mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 13:37:45 +00:00
Merge pull request #255963 from redxtech/vimix-cursor-theme
vimix-cursor-theme: init at 2020-02-24
This commit is contained in:
commit
e89f1d2e5c
@ -15230,6 +15230,12 @@
|
||||
githubId = 816465;
|
||||
name = "Redvers Davies";
|
||||
};
|
||||
redxtech = {
|
||||
email = "gabe@gabedunn.dev";
|
||||
github = "redxtech";
|
||||
githubId = 18155001;
|
||||
name = "Gabe Dunn";
|
||||
};
|
||||
reedrw = {
|
||||
email = "reedrw5601@gmail.com";
|
||||
github = "reedrw";
|
||||
|
33
pkgs/data/icons/vimix-cursor-theme/default.nix
Normal file
33
pkgs/data/icons/vimix-cursor-theme/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenvNoCC
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "vimix-cursor-theme";
|
||||
version = "2020-02-24";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vinceliuice";
|
||||
repo = "Vimix-cursors";
|
||||
rev = version;
|
||||
hash = "sha256-TfcDer85+UOtDMJVZJQr81dDy4ekjYgEvH1RE1IHMi4=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
sed -i 's/Vimix Cursors$/Vimix-Cursors/g' dist{,-white}/index.theme
|
||||
|
||||
install -dm 755 $out/share/icons/Vimix-Cursors{,-White}
|
||||
|
||||
cp -dr --no-preserve='ownership' dist/* $out/share/icons/Vimix-Cursors
|
||||
cp -dr --no-preserve='ownership' dist-white/* $out/share/icons/Vimix-Cursors-White
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An x-cursor theme inspired by Materia design and based on capitaine-cursors";
|
||||
homepage = "https://github.com/vinceliuice/Vimix-cursors";
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ redxtech ];
|
||||
};
|
||||
}
|
@ -30194,6 +30194,8 @@ with pkgs;
|
||||
|
||||
victor-mono = callPackage ../data/fonts/victor-mono { };
|
||||
|
||||
vimix-cursor-theme = callPackage ../data/icons/vimix-cursor-theme { };
|
||||
|
||||
vimix-gtk-themes = callPackage ../data/themes/vimix {
|
||||
inherit (gnome) gnome-shell;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user