mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
a75fcce8e8
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/06cdb7bbde8b5a7b86126b7c6f169357
50 lines
1.1 KiB
Nix
50 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.0.174";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adapta-project";
|
|
repo = "adapta-gtk-theme";
|
|
rev = version;
|
|
sha256 = "0fkvcpx2vhyr3z74r5mcpjh293w3cfm07axj8dj84nl2hi6im8b6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|