Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

84 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
pkg-config,
mono,
glib,
pango,
gtk2,
libxml2,
monoDLLFixer,
autoconf,
automake,
libtool,
which,
fetchpatch,
}:
stdenv.mkDerivation rec {
pname = "gtk-sharp";
version = "2.12.45";
builder = ./builder.sh;
src = fetchFromGitHub {
owner = "mono";
repo = "gtk-sharp";
rev = version;
sha256 = "1vy6yfwkfv6bb45bzf4g6dayiqkvqqvlr02rsnhd10793hlpqlgg";
};
patches = [
(fetchpatch {
url = "https://projects.archlinux.de/svntogit/packages.git/plain/trunk/gtk-sharp2-2.12.12-gtkrange.patch?h=packages/gtk-sharp-2";
sha256 = "bjx+OfgWnN8SO82p8G7pbGuxJ9EeQxMLeHnrtEm8RV8=";
})
];
postInstall = ''
pushd $out/bin
for f in gapi2-*
do
substituteInPlace $f --replace mono ${mono}/bin/mono
done
popd
'';
nativeBuildInputs = [
pkg-config
autoconf
automake
libtool
which
];
buildInputs = [
mono
glib
pango
gtk2
libxml2
];
preConfigure = ''
./bootstrap-${lib.versions.majorMinor version}
'';
env.NIX_CFLAGS_COMPILE = "-Wno-error=int-conversion";
dontStrip = true;
inherit monoDLLFixer;
passthru = {
gtk = gtk2;
};
meta = with lib; {
description = "Graphical User Interface Toolkit for mono and .Net";
homepage = "https://www.mono-project.com/docs/gui/gtksharp";
platforms = platforms.unix;
license = licenses.gpl2;
};
}