-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sweet-folders: init at unstable-2023-03-18
(cherry picked from commit 1278130)
- Loading branch information
1 parent
4a5d7d6
commit 6cdde17
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ lib | ||
, stdenvNoCC | ||
, fetchFromGitHub | ||
}: | ||
|
||
stdenvNoCC.mkDerivation { | ||
pname = "sweet-folders"; | ||
version = "unstable-2023-03-18"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "EliverLara"; | ||
repo = "Sweet-folders"; | ||
rev = "b2192ff1412472f036fdf9778c6b9dbcb6c044ec"; | ||
hash = "sha256-QexfqXH5a1IEhKBRjWSMdrEvThvLRzd4M32Xti1DCGE="; | ||
}; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out/share/icons | ||
cp -r Sweet-* $out/share/icons/ | ||
runHook postInstall | ||
''; | ||
|
||
meta = with lib; { | ||
description = "Folders icons for Sweet GTK theme"; | ||
homepage = "https://github.com/EliverLara/Sweet-folders"; | ||
maintainers = with maintainers; [ d3vil0p3r ]; | ||
platforms = platforms.unix; | ||
license = licenses.gpl3Plus; | ||
}; | ||
} |