Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
924 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
clangStdenv,
fetchzip,
gnustep-base,
wrapGNUstepAppsHook,
}:
clangStdenv.mkDerivation (finalAttrs: {
version = "0.32.0";
pname = "gnustep-gui";
src = fetchzip {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-${finalAttrs.version}.tar.gz";
sha256 = "sha256-HEH80P51mnLRt4+d+gzpGCv4u6oOdf+x68CcvkR6G/o=";
};
nativeBuildInputs = [ wrapGNUstepAppsHook ];
propagatedBuildInputs = [ gnustep-base ];
patches = [
./fixup-all.patch
];
meta = {
changelog = "https://github.com/gnustep/libs-gui/releases/tag/gui-${
builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version
}";
description = "GUI class library of GNUstep";
homepage = "https://gnustep.github.io/";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [
ashalkhakov
dblsaiko
matthewbauer
];
platforms = lib.platforms.linux;
};
})