cosmic-icons: init at unstable-2023-08-30

authored by a-kenji and committed by Alyssa Ross da939a89 5bcffdc1

+42
+42
pkgs/by-name/co/cosmic-icons/package.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , just 5 + , pop-icon-theme 6 + , hicolor-icon-theme 7 + }: 8 + stdenvNoCC.mkDerivation rec { 9 + pname = "cosmic-icons"; 10 + version = "unstable-2023-08-30"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "pop-os"; 14 + repo = pname; 15 + rev = "14d8e2048087be1ad444f9b3ebb75885509f72c6"; 16 + sha256 = "sha256-WbdgHmTn403x95x9wEYL0T9ksbN+YLzEB2yE0UrF9T0="; 17 + }; 18 + 19 + nativeBuildInputs = [ just ]; 20 + 21 + justFlags = [ 22 + "--set" 23 + "prefix" 24 + (placeholder "out") 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + pop-icon-theme 29 + hicolor-icon-theme 30 + ]; 31 + 32 + dontDropIconThemeCache = true; 33 + 34 + meta = with lib; { 35 + description = "System76 Cosmic icon theme for Linux"; 36 + homepage = "https://github.com/pop-os/cosmic-icons"; 37 + license = with licenses; [ 38 + cc-by-sa-40 39 + ]; 40 + maintainers = with maintainers; [ a-kenji ]; 41 + }; 42 + }