8 stdenv.mkDerivation (finalAttrs: {
9 pname = "gnustep-make";
13 url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-${finalAttrs.version}.tar.gz";
14 sha256 = "sha256-9UDfnw4drrPSOwjhSyBLKkbx0KQAXLFxyVMjQTgG5OE=";
18 "--with-layout=fhs-system"
23 configureFlags="$configureFlags --with-config-file=$out/etc/GNUstep/GNUstep.conf"
27 "GNUSTEP_INSTALLATION_DOMAIN=SYSTEM"
30 buildInputs = [ libobjc ];
32 propagatedBuildInputs = [ which ];
34 patches = [ ./fixup-paths.patch ];
35 setupHook = ./setup-hook.sh;
38 changelog = "https://github.com/gnustep/tools-make/releases/tag/make-${builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
39 description = "Build manager for GNUstep";
40 homepage = "https://gnustep.github.io/";
41 license = lib.licenses.lgpl2Plus;
42 maintainers = with lib.maintainers; [ ashalkhakov matthewbauer dblsaiko ];
43 platforms = lib.platforms.unix;