mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
adw-gtk3: 5.10 -> 6.2 (#407739)
This commit is contained in:
commit
7e17dd712a
1 changed files with 11 additions and 14 deletions
|
@ -5,40 +5,37 @@
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
meson,
|
meson,
|
||||||
ninja,
|
ninja,
|
||||||
sassc,
|
dart-sass,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
pname = "adw-gtk3";
|
pname = "adw-gtk3";
|
||||||
version = "5.10";
|
version = "6.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lassekongo83";
|
owner = "lassekongo83";
|
||||||
repo = "adw-gtk3";
|
repo = "adw-gtk3";
|
||||||
tag = "v${finalAttrs.version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-0OZk27b0kujzWtRX5uvelTMivL19g6sNB1IY6BsrO10=";
|
hash = "sha256-YYaqSEnIYHHkY4L3UhFBkR3DehoB6QADhSGOP/9NKx8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
sassc
|
dart-sass
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
passthru.updateScript = nix-update-script { };
|
||||||
chmod +x gtk/src/adw-gtk3-dark/gtk-3.0/install-dark-theme.sh
|
|
||||||
patchShebangs gtk/src/adw-gtk3-dark/gtk-3.0/install-dark-theme.sh
|
|
||||||
'';
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
updateScript = nix-update-script { };
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Theme from libadwaita ported to GTK-3";
|
description = "Unofficial GTK 3 port of libadwaita";
|
||||||
homepage = "https://github.com/lassekongo83/adw-gtk3";
|
homepage = "https://github.com/lassekongo83/adw-gtk3";
|
||||||
license = lib.licenses.lgpl21Only;
|
license = lib.licenses.lgpl21Only;
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ ciferkey ];
|
maintainers = with lib.maintainers; [
|
||||||
|
ciferkey
|
||||||
|
Gliczy
|
||||||
|
normalcea
|
||||||
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue