Unverified Commit 18f3e227 authored by Artturin's avatar Artturin Committed by GitHub
Browse files

objfw: init at 1.1.7 (#348756)

parents 1eff2edc 31e169d2
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -20584,6 +20584,12 @@
    githubId = 94006354;
    name = "steamwalker";
  };
  steeleduncan = {
    email = "steeleduncan@hotmail.com";
    github = "steeleduncan";
    githubId = 866573;
    name = "Duncan Steele";
  };
  steell = {
    email = "steve@steellworks.com";
    github = "Steell";
+43 −0
Original line number Diff line number Diff line
{
  autoconf,
  autogen,
  automake,
  clang,
  fetchFromGitHub,
  lib,
  stdenv,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "objfw";
  version = "1.1.7";

  src = fetchFromGitHub {
    owner = "ObjFW";
    repo = "ObjFW";
    rev = "refs/tags/1.1.7-release";
    hash = "sha256-0ylG/2ZSO3b8zdh6W9QJH5OJW9V344CCik1DduV5mhI=";
  };

  nativeBuildInputs = [
    clang
    automake
    autogen
    autoconf
  ];

  preConfigure = "./autogen.sh";
  configureFlags = [
    "--without-tls"
  ];

  doCheck = true;

  meta = {
    description = "A portable framework for the Objective-C language";
    homepage = "https://github.com/ObjFW/ObjFW";
    license = lib.licenses.lgpl3;
    maintainers = [ lib.maintainers.steeleduncan ];
    platforms = lib.platforms.linux;
  };
})