Loading pkgs/desktops/cinnamon/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -38,6 +38,8 @@ lib.makeScope pkgs.newScope (self: with self; { nemo-with-extensions = callPackage ./nemo/wrapper.nix { }; mint-artwork = callPackage ./mint-artwork { }; mint-cursor-themes = callPackage ./mint-cursor-themes { }; mint-l-icons = callPackage ./mint-l-icons { }; mint-l-theme = callPackage ./mint-l-theme { }; mint-themes = callPackage ./mint-themes { }; mint-x-icons = callPackage ./mint-x-icons { }; mint-y-icons = callPackage ./mint-y-icons { }; Loading pkgs/desktops/cinnamon/mint-l-icons/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { stdenvNoCC , lib , fetchFromGitHub , gnome , gnome-icon-theme , hicolor-icon-theme , gtk3 }: stdenvNoCC.mkDerivation rec { pname = "mint-l-icons"; version = "1.6.4"; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; hash = "sha256-C6BnBIOKeewsaQPPXWWo70eQpO1pJS0+xVQghPj/TTE="; }; propagatedBuildInputs = [ gnome.adwaita-icon-theme gnome-icon-theme hicolor-icon-theme ]; nativeBuildInputs = [ gtk3 ]; dontDropIconThemeCache = true; installPhase = '' runHook preInstall mkdir -p $out mv usr/share $out for theme in $out/share/icons/*; do gtk-update-icon-cache $theme done runHook postInstall ''; meta = with lib; { homepage = "https://github.com/linuxmint/mint-l-icons"; description = "Mint-L icon theme"; license = licenses.gpl3Plus; # from debian/copyright platforms = platforms.linux; maintainers = teams.cinnamon.members; }; } pkgs/desktops/cinnamon/mint-l-theme/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { stdenvNoCC , lib , fetchFromGitHub , python3 , sassc , sass }: stdenvNoCC.mkDerivation rec { pname = "mint-l-theme"; version = "1.9.3"; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; hash = "sha256-x+elC1NWcd+x8dNewwKPZBdkxSzEbo7jsG8B9DcWdoA="; }; nativeBuildInputs = [ python3 sassc sass ]; postPatch = '' patchShebangs . ''; installPhase = '' runHook preInstall mkdir -p $out mv usr/share $out runHook postInstall ''; meta = with lib; { homepage = "https://github.com/linuxmint/mint-l-theme"; description = "Mint-L theme for the Cinnamon desktop"; license = licenses.gpl3Plus; # from debian/copyright platforms = platforms.linux; maintainers = teams.cinnamon.members; }; } Loading
pkgs/desktops/cinnamon/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -38,6 +38,8 @@ lib.makeScope pkgs.newScope (self: with self; { nemo-with-extensions = callPackage ./nemo/wrapper.nix { }; mint-artwork = callPackage ./mint-artwork { }; mint-cursor-themes = callPackage ./mint-cursor-themes { }; mint-l-icons = callPackage ./mint-l-icons { }; mint-l-theme = callPackage ./mint-l-theme { }; mint-themes = callPackage ./mint-themes { }; mint-x-icons = callPackage ./mint-x-icons { }; mint-y-icons = callPackage ./mint-y-icons { }; Loading
pkgs/desktops/cinnamon/mint-l-icons/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { stdenvNoCC , lib , fetchFromGitHub , gnome , gnome-icon-theme , hicolor-icon-theme , gtk3 }: stdenvNoCC.mkDerivation rec { pname = "mint-l-icons"; version = "1.6.4"; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; hash = "sha256-C6BnBIOKeewsaQPPXWWo70eQpO1pJS0+xVQghPj/TTE="; }; propagatedBuildInputs = [ gnome.adwaita-icon-theme gnome-icon-theme hicolor-icon-theme ]; nativeBuildInputs = [ gtk3 ]; dontDropIconThemeCache = true; installPhase = '' runHook preInstall mkdir -p $out mv usr/share $out for theme in $out/share/icons/*; do gtk-update-icon-cache $theme done runHook postInstall ''; meta = with lib; { homepage = "https://github.com/linuxmint/mint-l-icons"; description = "Mint-L icon theme"; license = licenses.gpl3Plus; # from debian/copyright platforms = platforms.linux; maintainers = teams.cinnamon.members; }; }
pkgs/desktops/cinnamon/mint-l-theme/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { stdenvNoCC , lib , fetchFromGitHub , python3 , sassc , sass }: stdenvNoCC.mkDerivation rec { pname = "mint-l-theme"; version = "1.9.3"; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; hash = "sha256-x+elC1NWcd+x8dNewwKPZBdkxSzEbo7jsG8B9DcWdoA="; }; nativeBuildInputs = [ python3 sassc sass ]; postPatch = '' patchShebangs . ''; installPhase = '' runHook preInstall mkdir -p $out mv usr/share $out runHook postInstall ''; meta = with lib; { homepage = "https://github.com/linuxmint/mint-l-theme"; description = "Mint-L theme for the Cinnamon desktop"; license = licenses.gpl3Plus; # from debian/copyright platforms = platforms.linux; maintainers = teams.cinnamon.members; }; }