tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fluent-gtk-theme: 2023-06-20 -> 2024-04-28
José Romildo
2 years ago
7a1aa5e1
aa606b10
+10
-10
1 changed file
expand all
collapse all
unified
split
pkgs
data
themes
fluent-gtk-theme
default.nix
+10
-10
pkgs/data/themes/fluent-gtk-theme/default.nix
···
21
lib.checkListOfEnum "${pname}: size variants" [ "standard" "compact" ] sizeVariants
22
lib.checkListOfEnum "${pname}: tweaks" [ "solid" "float" "round" "blur" "noborder" "square" ] tweaks
23
24
-
stdenvNoCC.mkDerivation rec {
25
inherit pname;
26
-
version = "2023-06-20";
27
28
src = fetchFromGitHub {
29
owner = "vinceliuice";
30
-
repo = pname;
31
-
rev = version;
32
-
hash = "sha256-hUXlzLdcWeOHEJx3+vCMpxvJst6Rr8ISvlzlsUgCrhg=";
33
};
34
35
nativeBuildInputs = [
···
67
68
passthru.updateScript = gitUpdater { };
69
70
-
meta = with lib; {
71
description = "Fluent design gtk theme";
72
homepage = "https://github.com/vinceliuice/Fluent-gtk-theme";
73
-
license = licenses.gpl3Only;
74
-
platforms = platforms.unix;
75
-
maintainers = [ maintainers.romildo ];
76
};
77
-
}
···
21
lib.checkListOfEnum "${pname}: size variants" [ "standard" "compact" ] sizeVariants
22
lib.checkListOfEnum "${pname}: tweaks" [ "solid" "float" "round" "blur" "noborder" "square" ] tweaks
23
24
+
stdenvNoCC.mkDerivation (finalAttrs: {
25
inherit pname;
26
+
version = "2024-04-28";
27
28
src = fetchFromGitHub {
29
owner = "vinceliuice";
30
+
repo = "fluent-gtk-theme";
31
+
rev = finalAttrs.version;
32
+
hash = "sha256-0zf3fHtWcrbT26jgwgsPEDDhBWErOkgXyvGwSWV8rGs=";
33
};
34
35
nativeBuildInputs = [
···
67
68
passthru.updateScript = gitUpdater { };
69
70
+
meta = {
71
description = "Fluent design gtk theme";
72
homepage = "https://github.com/vinceliuice/Fluent-gtk-theme";
73
+
license = lib.licenses.gpl3Only;
74
+
platforms = lib.platforms.unix;
75
+
maintainers = with lib.maintainers; [ romildo ];
76
};
77
+
})