Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

cinnamon.mint-x-icons: Switch to tags, use stdenvNoCC

You don't need cc to build and install this.

+3 -4
+3 -4
pkgs/desktops/cinnamon/mint-x-icons/default.nix
··· 1 { fetchFromGitHub 2 , lib 3 - , stdenv 4 , gnome 5 , gnome-icon-theme 6 , hicolor-icon-theme ··· 9 , ubuntu-themes 10 }: 11 12 - stdenv.mkDerivation rec { 13 pname = "mint-x-icons"; 14 version = "1.6.4"; 15 16 src = fetchFromGitHub { 17 owner = "linuxmint"; 18 repo = pname; 19 - # they don't exactly do tags, it's just a named commit 20 - rev = "4ab3c314db1b3751d87d5769629b28ac0ca3c671"; 21 hash = "sha256-cPRae3EjzVtAL1Ei2LB4UNUU/m87mFT94xY/NnNR6JM="; 22 }; 23
··· 1 { fetchFromGitHub 2 , lib 3 + , stdenvNoCC 4 , gnome 5 , gnome-icon-theme 6 , hicolor-icon-theme ··· 9 , ubuntu-themes 10 }: 11 12 + stdenvNoCC.mkDerivation rec { 13 pname = "mint-x-icons"; 14 version = "1.6.4"; 15 16 src = fetchFromGitHub { 17 owner = "linuxmint"; 18 repo = pname; 19 + rev = version; 20 hash = "sha256-cPRae3EjzVtAL1Ei2LB4UNUU/m87mFT94xY/NnNR6JM="; 21 }; 22