fcppt: 1.3.0 -> 2.5.0
This commit is contained in:
parent
45cfd3969a
commit
fb35166629
@ -1,21 +1,24 @@
|
|||||||
{ stdenv, fetchgit, cmake, boost }:
|
{ stdenv, fetchFromGitHub, cmake, boost }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "fcppt-1.3.0";
|
name = "fcppt-${version}";
|
||||||
|
version = "2.5.0";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/freundlich/fcppt.git;
|
owner = "freundlich";
|
||||||
rev = "7787733afc7a6278c0de8c0435b3d312e0c0c851";
|
repo = "fcppt";
|
||||||
sha256 = "1vy6nhk6nymbp4yihvw75qn67q9fgmfc518f8dn3h2pq2gfjqrpy";
|
rev = version;
|
||||||
|
sha256 = "0pjldwwxgnzjfd04cy29a9mn2szq4v2mjnw0367kxd141q2iglqi";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake boost ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ boost ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DENABLE_EXAMPLES=false" "-DENABLE_TEST=false" ];
|
cmakeFlags = [ "-DENABLE_EXAMPLES=false" "-DENABLE_TEST=false" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Freundlich's C++ toolkit";
|
description = "Freundlich's C++ toolkit";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on
|
Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on
|
||||||
@ -25,8 +28,8 @@ stdenv.mkDerivation rec {
|
|||||||
C++11).
|
C++11).
|
||||||
'';
|
'';
|
||||||
homepage = http://fcppt.org;
|
homepage = http://fcppt.org;
|
||||||
license = stdenv.lib.licenses.boost;
|
license = licenses.boost;
|
||||||
maintainers = with stdenv.lib.maintainers; [ pmiddend ];
|
maintainers = with maintainers; [ pmiddend ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user