mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
50 lines
886 B
Nix
50 lines
886 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libGL
|
|
, libpng
|
|
, pkg-config
|
|
, xorg
|
|
, file
|
|
, freetype
|
|
, fontconfig
|
|
, xlibsWrapper
|
|
, alsa-lib
|
|
, 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
|
|
alsa-lib
|
|
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" ];
|
|
};
|
|
}
|