mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
banana-cursor: init at 1.0.0
This commit is contained in:
parent
6add2ee934
commit
f48ff765a1
31
pkgs/data/icons/banana-cursor/default.nix
Normal file
31
pkgs/data/icons/banana-cursor/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "banana-cursor";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ful1e5";
|
||||
repo = "banana-cursor";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-PI7381xf/GctQTnfcE0W3M3z2kqbX4VexMf17C61hT8=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/icons
|
||||
mv themes/Banana $out/share/icons
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ful1e5/banana-cursor";
|
||||
description = "The banana cursor theme";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ yrd ];
|
||||
};
|
||||
}
|
@ -25662,6 +25662,8 @@ with pkgs;
|
||||
|
||||
bakoma_ttf = callPackage ../data/fonts/bakoma-ttf { };
|
||||
|
||||
banana-cursor = callPackage ../data/icons/banana-cursor { };
|
||||
|
||||
barlow = callPackage ../data/fonts/barlow { };
|
||||
|
||||
bgnet = callPackage ../data/documentation/bgnet { };
|
||||
|
Loading…
Reference in New Issue
Block a user