571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, boost, catch2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "fcppt";
|
|
version = "4.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freundlich";
|
|
repo = "fcppt";
|
|
rev = version;
|
|
sha256 = "1pcmi2ck12nanw1rnwf8lmyx85iq20897k6daxx3hw5f23j1kxv6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ boost catch2 ];
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_BOOST=true"
|
|
"-DENABLE_EXAMPLES=true"
|
|
"-DENABLE_CATCH=true"
|
|
"-DENABLE_TEST=true"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 = "https://fcppt.org";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ pmiddend ];
|
|
platforms = [ "x86_64-linux" "x86_64-windows" ];
|
|
};
|
|
}
|