Merge pull request #280975 from D3vil0p3r/patch-4

sweet-folders: init at unstable-2023-03-18
This commit is contained in:
h7x4 2024-01-18 21:54:52 +01:00 committed by GitHub
commit 910e4dbc9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
};
}