summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.10/core/gnome-backgrounds/default.nix
blob: 3879b81859a41428539e6ef878c1ee4fd79690e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, pkgconfig, intltool }:

stdenv.mkDerivation rec {
  name = "gnome-backgrounds-3.10.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-backgrounds/3.10/${name}.tar.xz";
    sha256 = "11rv03m4hznpx0brf47hil04199z3jjvl1aq7q0lnill3yrffiyc";
  };

  nativeBuildInputs = [ pkgconfig intltool ];

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