gnustep.make: 2.8.0 -> 2.9.0

https://github.com/gnustep/tools-make/releases/tag/make-2_9_0
This commit is contained in:
R. RyanTM 2021-05-07 16:08:46 +00:00 committed by ajs124
parent 7229e6d646
commit 99509cff29

View file

@ -1,12 +1,8 @@
{ lib, stdenv, fetchurl, clang, which, libobjc }:
let
version = "2.9.0";
in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "gnustep-make";
inherit version;
version = "2.9.0";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-${version}.tar.gz";
@ -32,6 +28,7 @@ stdenv.mkDerivation {
meta = {
description = "A build manager for GNUstep";
homepage = "http://gnustep.org/";
changelog = "https://github.com/gnustep/tools-make/releases/tag/make-${builtins.replaceStrings [ "." ] [ "_" ] version}";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ ashalkhakov matthewbauer ];
platforms = lib.platforms.unix;