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

stdenv.mkDerivation rec {
  name = "gnome-common-${minVer}.0";
  minVer = "2.34";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-common/${minVer}/${name}.tar.bz2";
    sha256 = "1pz13mpp09q5s3bikm8ml92s1g0scihsm4iipqv1ql3mp6d4z73s";
  };

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

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