objfw: init at 1.1.7
This commit is contained in:
parent
079dac6bd1
commit
31e169d2be
43
pkgs/by-name/ob/objfw/package.nix
Normal file
43
pkgs/by-name/ob/objfw/package.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user