summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gnome-common/default.nix
blob: 8623e598dc20e9e7e1cedd0601ed1fb34f6a8071 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, which, gnome3, autoconf, automake }:

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

  patches = [(fetchurl {
    name = "gnome-common-patch";
    url = "https://bug697543.bugzilla-attachments.gnome.org/attachment.cgi?id=240935";
    sha256 = "17abp7czfzirjm7qsn2czd03hdv9kbyhk3lkjxg2xsf5fky7z7jl";
  })];

  propagatedBuildInputs = [ which autoconf automake ]; # autogen.sh which is using gnome-common tends to require which

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