Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
774 B
Nix
38 lines
774 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
intltool,
|
|
gtk2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtk-engine-murrine";
|
|
version = "0.98.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "129cs5bqw23i76h3nmc29c9mqkm9460iwc8vkl7hs4xr07h8mip9";
|
|
};
|
|
|
|
patches = [
|
|
# add prototypes to fix gcc-14 implicit-function-declaration errors
|
|
./missing-prototypes.diff
|
|
];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
];
|
|
buildInputs = [ gtk2 ];
|
|
|
|
meta = {
|
|
description = "Very flexible theme engine";
|
|
homepage = "https://gitlab.gnome.org/Archive/murrine";
|
|
license = lib.licenses.lgpl3;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|