2024-04-21 15:54:59 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, make
|
|
|
|
, wrapGNUstepAppsHook
|
|
|
|
, fetchzip
|
|
|
|
, base
|
|
|
|
}:
|
2021-07-14 22:03:04 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "0.31.1";
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "gnustep-gui";
|
|
|
|
|
|
|
|
src = fetchzip {
|
2024-04-21 15:54:59 +00:00
|
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-${finalAttrs.version}.tar.gz";
|
2024-07-27 06:49:29 +00:00
|
|
|
sha256 = "sha256-+4XEJ6PKpantbIbyNroFMaNBTFffkuW/ajSocGQO9Mo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-04-21 15:54:59 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ make wrapGNUstepAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ base ];
|
2024-04-21 15:54:59 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
patches = [
|
|
|
|
./fixup-all.patch
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
2024-04-21 15:54:59 +00:00
|
|
|
changelog = "https://github.com/gnustep/libs-gui/releases/tag/gui-${builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "GUI class library of GNUstep";
|
2024-04-21 15:54:59 +00:00
|
|
|
homepage = "https://gnustep.github.io/";
|
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ ashalkhakov matthewbauer dblsaiko ];
|
|
|
|
platforms = lib.platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-04-21 15:54:59 +00:00
|
|
|
})
|