clanlib: init at 4.1.0

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
nixinator 2021-04-13 20:18:49 +01:00 committed by Jonathan Ringer
parent 280c8cf540
commit 11bb46fdc6
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libGL
, libpng
, pkg-config
, xorg
, file
, freetype
, fontconfig
, xlibsWrapper
, alsaLib
, libXrender
}:
stdenv.mkDerivation rec {
pname = "clanlib";
version = "4.1.0";
src = fetchFromGitHub {
repo = "ClanLib";
owner = "sphair";
rev = "v${version}";
sha256 = "sha256-SVsLWcTP+PCIGDWLkadMpJPj4coLK9dJrW4sc2+HotE=";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
libGL
libpng
xorg.xorgproto
freetype
fontconfig
xlibsWrapper
alsaLib
libXrender
];
meta = with lib; {
homepage = "https://github.com/sphair/ClanLib";
description = "A cross platform toolkit library with a primary focus on game creation";
license = licenses.mit;
maintainers = with maintainers; [ nixinator ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -14081,6 +14081,8 @@ in
cl = callPackage ../development/libraries/cl { };
clanlib = callPackage ../development/libraries/clanlib { };
classads = callPackage ../development/libraries/classads { };
clearsilver = callPackage ../development/libraries/clearsilver { };