fcppt: initial import into nixpkgs
This commit is contained in:
parent
6a95cd085f
commit
7f2262e9a8
@ -162,6 +162,7 @@
|
|||||||
pkmx = "Chih-Mao Chen <pkmx.tw@gmail.com>";
|
pkmx = "Chih-Mao Chen <pkmx.tw@gmail.com>";
|
||||||
plcplc = "Philip Lykke Carlsen <plcplc@gmail.com>";
|
plcplc = "Philip Lykke Carlsen <plcplc@gmail.com>";
|
||||||
pmahoney = "Patrick Mahoney <pat@polycrystal.org>";
|
pmahoney = "Patrick Mahoney <pat@polycrystal.org>";
|
||||||
|
pmiddend = "Philipp Middendorf <pmidden@secure.mailbox.org>";
|
||||||
prikhi = "Pavan Rikhi <pavan.rikhi@gmail.com>";
|
prikhi = "Pavan Rikhi <pavan.rikhi@gmail.com>";
|
||||||
pSub = "Pascal Wittmann <mail@pascal-wittmann.de>";
|
pSub = "Pascal Wittmann <mail@pascal-wittmann.de>";
|
||||||
puffnfresh = "Brian McKenna <brian@brianmckenna.org>";
|
puffnfresh = "Brian McKenna <brian@brianmckenna.org>";
|
||||||
|
27
pkgs/development/libraries/fcppt/default.nix
Normal file
27
pkgs/development/libraries/fcppt/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchgit, cmake, boost }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "fcppt-1.3.0";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/freundlich/fcppt.git;
|
||||||
|
rev = "7787733afc7a6278c0de8c0435b3d312e0c0c851";
|
||||||
|
sha256 = "1vy6nhk6nymbp4yihvw75qn67q9fgmfc518f8dn3h2pq2gfjqrpy";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake boost ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DENABLE_EXAMPLES=false" "-DENABLE_TEST=false" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Freundlich's C++ toolkit";
|
||||||
|
longDescription = ''
|
||||||
|
Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on improving general C++ code by providing better types, a strong focus on C++11 (non-conforming compilers are mostly not supported) and functional programming (which is both efficient and syntactically affordable in C++11).
|
||||||
|
'';
|
||||||
|
homepage = http://fcppt.org;
|
||||||
|
license = stdenv.lib.licenses.boost;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ pmiddend ];
|
||||||
|
};
|
||||||
|
}
|
@ -1349,6 +1349,8 @@ let
|
|||||||
plugins = [ ];
|
plugins = [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fcppt = callPackage ../development/libraries/fcppt/default.nix { };
|
||||||
|
|
||||||
fcron = callPackage ../tools/system/fcron { };
|
fcron = callPackage ../tools/system/fcron { };
|
||||||
|
|
||||||
fdm = callPackage ../tools/networking/fdm {};
|
fdm = callPackage ../tools/networking/fdm {};
|
||||||
|
Loading…
Reference in New Issue
Block a user