14 lines
301 B
Nix
14 lines
301 B
Nix
{
|
|
colloid-icon-theme,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
colloid-icon-theme.overrideAttrs (_finalAttrs: {
|
|
version = "master";
|
|
src = fetchFromGitHub {
|
|
owner = "vinceliuice";
|
|
repo = "Colloid-icon-theme";
|
|
rev = "main";
|
|
hash = "sha256-x2SSaIkKm1415avO7R6TPkpghM30HmMdjMFUUyPWZsk=";
|
|
};
|
|
})
|