gnustep.base: 1.27.0 -> 1.28.0

https://github.com/gnustep/libs-base/releases/tag/base-1_28_0
This commit is contained in:
ajs124 2021-05-07 19:02:37 +02:00
parent 99509cff29
commit 35ef05ce92

View file

@ -1,7 +1,7 @@
{ aspell, audiofile { aspell, audiofile
, gsmakeDerivation , gsmakeDerivation
, cups , cups
, fetchurl, fetchpatch , fetchzip
, gmp, gnutls , gmp, gnutls
, libffi, binutils-unwrapped , libffi, binutils-unwrapped
, libjpeg, libtiff, libpng, giflib , libjpeg, libtiff, libpng, giflib
@ -11,14 +11,12 @@
, pkg-config, portaudio , pkg-config, portaudio
, libiberty , libiberty
}: }:
let gsmakeDerivation rec {
version = "1.27.0"; pname = "gnustep-base";
in version = "1.28.0";
gsmakeDerivation { src = fetchzip {
name = "gnustep-base-${version}"; url = "ftp://ftp.gnustep.org/pub/gnustep/core/${pname}-${version}.tar.gz";
src = fetchurl { sha256 = "05vjz19v1w7yb7hm8qrc41bqh6xd8in7sgg2p0h1vldyyaa5sh90";
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-${version}.tar.gz";
sha256 = "10xjrv5d443wzll6lf9y65p6v9kvx7xxklhsm1j05y93vwgzl0w8";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -35,13 +33,10 @@ gsmakeDerivation {
]; ];
patches = [ patches = [
./fixup-paths.patch ./fixup-paths.patch
(fetchpatch { # for icu68 compatibility, remove with next update(?)
url = "https://github.com/gnustep/libs-base/commit/06fa7792a51cb970e5d010a393cb88eb127830d7.patch";
sha256 = "150n1sa34av9ywc04j36jvj7ic9x6pgr123rbn2mx5fj76q23852";
})
]; ];
meta = { meta = {
description = "An implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa"; description = "An implementation of AppKit and Foundation libraries of OPENSTEP and Cocoa";
changelog = "https://github.com/gnustep/libs-base/releases/tag/base-${builtins.replaceStrings [ "." ] [ "_" ] version}";
}; };
} }