mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
20 lines
569 B
Nix
20 lines
569 B
Nix
{ lib, stdenv, make, makeWrapper, which }:
|
|
{ nativeBuildInputs ? [], ...} @ args:
|
|
stdenv.mkDerivation (args // {
|
|
nativeBuildInputs = [ makeWrapper make which ] ++ nativeBuildInputs;
|
|
|
|
builder = ./builder.sh;
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
GNUSTEP_MAKEFILES = "${make}/share/GNUstep/Makefiles";
|
|
|
|
meta = {
|
|
homepage = "http://gnustep.org/";
|
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ ashalkhakov matthewbauer ];
|
|
platforms = lib.platforms.linux;
|
|
} // (lib.optionalAttrs (builtins.hasAttr "meta" args) args.meta);
|
|
})
|