lol
1{ lib, stdenv
2, fetchFromGitHub
3, cmake
4}:
5
6stdenv.mkDerivation rec {
7 pname = "fparser";
8 version = "unstable-2015-09-25";
9
10 src = fetchFromGitHub {
11 owner = "thliebig";
12 repo = "fparser";
13 rev = "a59e1f51e32096bfe2a0a2640d5dffc7ae6ba37b";
14 sha256 = "0wayml1mlyi922gp6am3fsidhzsilziksdn5kbnpcln01h8555ad";
15 };
16
17 nativeBuildInputs = [ cmake ];
18
19 meta = with lib; {
20 description = "C++ Library for Evaluating Mathematical Functions";
21 homepage = "https://github.com/thliebig/fparser";
22 license = licenses.lgpl3;
23 maintainers = with maintainers; [ matthuszagh ];
24 platforms = platforms.linux;
25 };
26}