14 lines
288 B
Nix
14 lines
288 B
Nix
{
|
|
rose-pine-gtk-theme,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
rose-pine-gtk-theme.overrideAttrs (_finalAttrs: {
|
|
version = "master";
|
|
src = fetchFromGitHub {
|
|
owner = "rose-pine";
|
|
repo = "gtk";
|
|
tag = "master";
|
|
hash = "sha256-vCWs+TOVURl18EdbJr5QAHfB+JX9lYJ3TPO6IklKeFE=";
|
|
};
|
|
})
|