diff options
author | Adrien Devresse | 2016-02-18 23:39:18 +0100 |
---|---|---|
committer | devresse | 2016-02-19 14:51:43 +0000 |
commit | 825ba05efbf26801138ca3558b42a040ea774f0a (patch) | |
tree | bf7b91c4ce1b8e2e15e0a721d5a31281631c4821 /pkgs/development/libraries/vmmlib | |
parent | cc58339345399d6831fb2e44801e5aca33e4323a (diff) |
vmmlib: init at 1.6.2
vmmlib is a vector and matrix C++ library
Diffstat (limited to 'pkgs/development/libraries/vmmlib')
-rw-r--r-- | pkgs/development/libraries/vmmlib/default.nix | 41 | ||||
-rw-r--r-- | pkgs/development/libraries/vmmlib/disable-cpack.patch | 11 |
2 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/development/libraries/vmmlib/default.nix b/pkgs/development/libraries/vmmlib/default.nix new file mode 100644 index 000000000000..3a7f8770e6c7 --- /dev/null +++ b/pkgs/development/libraries/vmmlib/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, boost, blas }: + +stdenv.mkDerivation rec { + version = "1.6.2"; + name = "vmmlib-${version}"; + buildInputs = [ stdenv pkgconfig cmake boost blas ]; + + src = fetchFromGitHub { + owner = "VMML"; + repo = "vmmlib"; + rev = "release-${version}"; + sha256 = "0sn6jl1r5k6ka0vkjsdnn14hb95dqq8158dapby6jk72wqj9kdml"; + }; + + patches = [ + ./disable-cpack.patch #disable the need of cpack/rpm + ]; + + enableParallelBuilding = true; + + doCheck = true; + + checkTarget = "test"; + + meta = with stdenv.lib; { + description = "A vector and matrix math library implemented using C++ templates"; + + longDescription = ''vmmlib is a vector and matrix math library implemented + using C++ templates. Its basic functionality includes a vector + and a matrix class, with additional functionality for the + often-used 3d and 4d vectors and 3x3 and 4x4 matrices. + More advanced functionality include solvers, frustum + computations and frustum culling classes, and spatial data structures''; + + license = licenses.bsd2; + homepage = http://github.com/VMML/vmmlib/; + maintainers = [ maintainers.adev ]; + platforms = platforms.all; + }; +} + diff --git a/pkgs/development/libraries/vmmlib/disable-cpack.patch b/pkgs/development/libraries/vmmlib/disable-cpack.patch new file mode 100644 index 000000000000..8b9a7983a928 --- /dev/null +++ b/pkgs/development/libraries/vmmlib/disable-cpack.patch @@ -0,0 +1,11 @@ +diff -ur a/CMakeLists.txt b/CMakeLists.txt +--- a/CMakeLists.txt 1970-01-01 00:00:01.000000000 +0000 ++++ b/CMakeLists.txt 2016-02-19 08:49:30.053759000 +0000 +@@ -178,6 +178,5 @@ + install(FILES ${DOCS} DESTINATION share/vmmlib COMPONENT dev) + + include(DoxygenRule) # must be after all targets +-include(CPackConfig) + include(CTest) +-include(PackageConfig) ++ |