nixpkgs/pkgs/development/libraries/sfml/default.nix

32 lines
1.1 KiB
Nix
Raw Normal View History

2016-07-25 19:30:34 +00:00
{ stdenv, fetchurl, cmake, libX11, freetype, libjpeg, openal, flac, libvorbis
, glew, libXrandr, libXrender, udev, xcbutilimage
}:
2016-07-25 19:30:34 +00:00
let
2017-01-26 23:02:51 +00:00
version = "2.4.1";
2016-07-25 19:30:34 +00:00
in
stdenv.mkDerivation rec {
2016-07-25 19:30:34 +00:00
name = "sfml-${version}";
src = fetchurl {
2016-07-25 19:30:34 +00:00
url = "https://github.com/LaurentGomila/SFML/archive/${version}.tar.gz";
2017-01-26 23:02:51 +00:00
sha256 = "13irazmqk9vcgkigsjcxns7xjmnz1gifw0b656z1rpz208diklgr";
};
2016-07-25 19:30:34 +00:00
buildInputs = [ cmake libX11 freetype libjpeg openal flac libvorbis glew
libXrandr libXrender udev xcbutilimage
];
2016-09-06 11:29:09 +00:00
cmakeFlags = [ "-DSFML_INSTALL_PKGCONFIG_FILES=yes" ];
meta = with stdenv.lib; {
homepage = http://www.sfml-dev.org/;
description = "Simple and fast multimedia library";
longDescription = ''
SFML is a simple, fast, cross-platform and object-oriented multimedia API.
It provides access to windowing, graphics, audio and network.
It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python.
'';
license = licenses.zlib;
maintainers = [ maintainers.astsmtl ];
platforms = platforms.linux;
};
}