85016ec3d1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/adapta-gtk-theme/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - directory tree listing: https://gist.github.com/60eadc1cf0cabf6d0def6a21d1d21c5d - du listing: https://gist.github.com/afad29a6d76aa88ae6df876a0d28f599
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, parallel, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "adapta-gtk-theme-${version}";
|
|
version = "3.93.1.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adapta-project";
|
|
repo = "adapta-gtk-theme";
|
|
rev = version;
|
|
sha256 = "1jaayfj2h0miaalmgk0i26py4b6750iq3kis2jnm54g2gxyw3ipw";
|
|
};
|
|
|
|
preferLocalBuild = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkgconfig
|
|
parallel
|
|
sassc
|
|
inkscape
|
|
libxml2
|
|
glib.dev
|
|
gnome3.gnome-shell
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk_pixbuf
|
|
librsvg
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
configureFlags = [
|
|
"--disable-gtk_legacy"
|
|
"--disable-gtk_next"
|
|
"--disable-unity"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An adaptive Gtk+ theme based on Material Design Guidelines";
|
|
homepage = https://github.com/adapta-project/adapta-gtk-theme;
|
|
license = with licenses; [ gpl2 cc-by-sa-30 ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|