cinnamon.mint-y-icons: Switch to tags, use stdenvNoCC
You don't need cc to build and install this.
This commit is contained in:
parent
e6cc44d960
commit
74925675b4
1 changed files with 3 additions and 4 deletions
|
@ -1,21 +1,20 @@
|
||||||
{ fetchFromGitHub
|
{ fetchFromGitHub
|
||||||
, lib
|
, lib
|
||||||
, stdenv
|
, stdenvNoCC
|
||||||
, gnome
|
, gnome
|
||||||
, gnome-icon-theme
|
, gnome-icon-theme
|
||||||
, hicolor-icon-theme
|
, hicolor-icon-theme
|
||||||
, gtk3
|
, gtk3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "mint-y-icons";
|
pname = "mint-y-icons";
|
||||||
version = "1.6.1";
|
version = "1.6.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "linuxmint";
|
owner = "linuxmint";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
# they don't exactly do tags, it's just a named commit
|
rev = version;
|
||||||
rev = "57d16eb85f2af40be17e2232d279bb65b689f5b7";
|
|
||||||
hash = "sha256-voFYz0MiuqyNSngi4QZUJKDIjggQWOAV5B30zMP8iTk=";
|
hash = "sha256-voFYz0MiuqyNSngi4QZUJKDIjggQWOAV5B30zMP8iTk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue