slackdump: 3.0.3 -> 3.0.5 (#379390)
[NixPkgs.git] / pkgs / by-name / sw / sweet-folders / package.nix
blobdbbe7a949992be7b033749329a2f2e039dfb10ba
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "sweet-folders";
9   version = "unstable-2023-03-18";
11   src = fetchFromGitHub {
12     owner = "EliverLara";
13     repo = "Sweet-folders";
14     rev = "b2192ff1412472f036fdf9778c6b9dbcb6c044ec";
15     hash = "sha256-QexfqXH5a1IEhKBRjWSMdrEvThvLRzd4M32Xti1DCGE=";
16   };
18   installPhase = ''
19     runHook preInstall
21     mkdir -p $out/share/icons
22     cp -r Sweet-* $out/share/icons/
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Folders icons for Sweet GTK theme";
29     homepage = "https://github.com/EliverLara/Sweet-folders";
30     maintainers = with maintainers; [ d3vil0p3r ];
31     platforms = platforms.unix;
32     license = licenses.gpl3Plus;
33   };