10 lines
282 B
Nix
10 lines
282 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=";
|
|
};
|
|
})
|