summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.18/core/gnome-backgrounds/default.nix
blob: 32d6d6e7535a733e2b8181dc8f42325b962986c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, fetchurl, pkgconfig, gnome3, intltool }:

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

  nativeBuildInputs = [ pkgconfig intltool ];

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