Skip to content

Commit

Permalink
objfw: init at 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
steeleduncan committed Oct 27, 2024
1 parent 079dac6 commit 31e169d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/by-name/ob/objfw/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
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;
};
})

0 comments on commit 31e169d

Please sign in to comment.