summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.24/core/gnome-themes-standard/default.nix
blob: 5cc3385ad8416b3a49f46bcd48a1198f4cd0f4fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchurl, intltool, gtk3, gnome3, librsvg, pkgconfig, pango, atk, gtk2
, gdk_pixbuf }:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  buildInputs = [ intltool gtk3 librsvg pkgconfig pango atk gtk2 gdk_pixbuf
                  gnome3.defaultIconTheme ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
    maintainers = gnome3.maintainers;
  };
}