a211d94291
after https://github.com/Mic92/nix-update/pull/120 and https://github.com/NixOS/nixpkgs/pull/207703, `attrPath` can now be omitted when using `nix-update-script`
44 lines
878 B
Nix
44 lines
878 B
Nix
{ stdenvNoCC
|
|
, lib
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, meson
|
|
, ninja
|
|
, sassc
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "adw-gtk3";
|
|
version = "4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lassekongo83";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7E+eBbsavWdraCxxtwFdvFkxTWN/XMz8obvnpxf6PQc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
sassc
|
|
];
|
|
|
|
postPatch = ''
|
|
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 = with lib; {
|
|
description = "The theme from libadwaita ported to GTK-3";
|
|
homepage = "https://github.com/lassekongo83/adw-gtk3";
|
|
license = licenses.lgpl21Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ciferkey ];
|
|
};
|
|
}
|