nixpkgs/pkgs/desktops/gnome/core/gnome-common/default.nix
Christopher Bergqvist cd1e76095a
gnome-common: Remove superfluous patch
Fixed on mainline in 2014, see: 33608985c0 "gnome-common: use ACLOCAL_PATH over ACLOCAL_FLAGS"

Not sure why patching was not failing.

One step in getting rid of references to GNOME Bugzilla which has been replaced by GitLab issues and so fetching patches from Bugzilla may eventually start failing.
2023-04-13 20:25:38 +02:00

21 lines
668 B
Nix

{ lib, stdenv, fetchurl, which, gnome, autoconf, automake }:
stdenv.mkDerivation rec {
pname = "gnome-common";
version = "3.18.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-common/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf";
};
passthru = {
updateScript = gnome.updateScript { packageName = "gnome-common"; attrPath = "gnome.gnome-common"; };
};
propagatedBuildInputs = [ which autoconf automake ]; # autogen.sh which is using gnome-common tends to require which
meta = with lib; {
maintainers = teams.gnome.members;
};
}