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
52 lines
935 B
Nix
52 lines
935 B
Nix
{
|
|
lib,
|
|
clangStdenv,
|
|
fetchzip,
|
|
cairo,
|
|
fontconfig,
|
|
freetype,
|
|
gnustep-gui,
|
|
libXft,
|
|
libXmu,
|
|
pkg-config,
|
|
wrapGNUstepAppsHook,
|
|
}:
|
|
|
|
clangStdenv.mkDerivation (finalAttrs: {
|
|
pname = "gnustep-back";
|
|
version = "0.32.0";
|
|
|
|
src = fetchzip {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-E9rg3ySRUXSVgdPLeg1WrMO8u+SHHmM2Kb/XDAYqIOQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGNUstepAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
fontconfig
|
|
freetype
|
|
libXft
|
|
libXmu
|
|
];
|
|
|
|
propagatedBuildInputs = [ gnustep-gui ];
|
|
|
|
meta = {
|
|
description = "Generic backend for GNUstep";
|
|
mainProgram = "gpbs";
|
|
homepage = "https://gnustep.github.io/";
|
|
license = lib.licenses.lgpl2Plus;
|
|
maintainers = with lib.maintainers; [
|
|
ashalkhakov
|
|
dblsaiko
|
|
matthewbauer
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|