oranchelo-icon-theme: init at 0.8.0.1

+39
+37
pkgs/data/icons/oranchelo-icon-theme/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, gtk3, plasma5Packages, hicolor-icon-theme }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "oranchelo-icon-theme"; 5 + version = "0.8.0.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "OrancheloTeam"; 9 + repo = pname; 10 + rev = "096c8c8d550ac9a85f5f34f3f30243e6f198df2d"; 11 + sha256 = "sha256-TKi42SA33pGKdrPtGTpvxFbOP+5N93Y4BvO4CRTveLM="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + gtk3 16 + ]; 17 + 18 + propagatedBuildInputs = [ 19 + plasma5Packages.breeze-icons 20 + hicolor-icon-theme 21 + ]; 22 + 23 + dontDropIconThemeCache = true; 24 + 25 + installPhase = '' 26 + mkdir -p $out/share/icons 27 + cp -r $Oranchelo* $out/share/icons/ 28 + ''; 29 + 30 + meta = with lib; { 31 + description = "Oranchelo icon theme"; 32 + homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme"; 33 + license = licenses.gpl3Only; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ _414owen ]; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 20949 20950 openzone-cursors = callPackage ../data/themes/openzone { }; 20951 20952 orbitron = callPackage ../data/fonts/orbitron { }; 20953 20954 orchis = callPackage ../data/themes/orchis { };
··· 20949 20950 openzone-cursors = callPackage ../data/themes/openzone { }; 20951 20952 + oranchelo-icon-theme = callPackage ../data/icons/oranchelo-icon-theme { }; 20953 + 20954 orbitron = callPackage ../data/fonts/orbitron { }; 20955 20956 orchis = callPackage ../data/themes/orchis { };