summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gnome-backgrounds/default.nix
blob: 41f75e6e3c5444f3a14da83568c9107e8e14027a (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.12.0";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-backgrounds/3.12/${name}.tar.xz";
    sha256 = "77a893025a0bed5753631a810154cad53fb2cf34c8ee988016217cd8862eab42";
  };

  nativeBuildInputs = [ pkgconfig intltool ];

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