71 lines
1.2 KiB
Nix
71 lines
1.2 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, gettext
|
|
, glib
|
|
, gnome3
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, libcanberra-gtk3
|
|
, libgtop
|
|
, libstartup_notification
|
|
, libxml2
|
|
, pkgconfig
|
|
, substituteAll
|
|
, wrapGAppsHook
|
|
, zenity }:
|
|
|
|
let
|
|
pname = "metacity";
|
|
version = "3.34.1";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0ga57b71i2gbd723gbs3pxy1jnf44q5mnwq5yhxzn2irbh2d3iri";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
inherit zenity;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
libxml2
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
libcanberra-gtk3
|
|
libgtop
|
|
libstartup_notification
|
|
zenity
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
};
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Window manager used in Gnome Flashback";
|
|
homepage = https://wiki.gnome.org/Projects/Metacity;
|
|
license = licenses.gpl2;
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|