1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 12:07:48 +00:00

Add metadata for nixpkgs

This commit is contained in:
RGBCube 2023-11-30 22:17:13 +03:00
parent 353ab7e90e
commit d215664635
No known key found for this signature in database
2 changed files with 24 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ stdenvNoCC, fetchFromGitHub }:
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "gruvbox-plus-icons";
@ -19,4 +19,14 @@ stdenvNoCC.mkDerivation {
runHook postInstall
'';
meta = with lib; {
description = "Gruvbox Plus icon pack for Linux desktops based on the Gruvbox color theme.";
homepage = "https://github.com/SylEleuth/gruvbox-plus-icon-pack";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [
RGBCube
];
};
}

View file

@ -1,4 +1,4 @@
{ pkgs, stdenvNoCC, fetchFromGitHub }:
{ lib, pkgs, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "material-cursors";
@ -27,9 +27,19 @@ stdenvNoCC.mkDerivation {
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/material-cursors
cp -r dist/* $out/share/icons/material-cursors
mkdir -p $out/share/icons
cp -r dist/* $out/share/icons/
runHook postInstall
'';
meta = with lib; {
description = "Material cursors for Linux";
homepage = "https://github.com/varlesh/material-cursors";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [
RGBCube
];
};
}