aboutsummaryrefslogtreecommitdiff
path: root/SimpleParser.nix
blob: 1a562714c0408ca82217cec07182ba9018e9cb52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchFromGitHub, cmake, boost, gtest }:

stdenv.mkDerivation rec {
  name = "SimpleParser";

  src = fetchFromGitHub {
    owner  = "KnairdA";
    repo   = "SimpleParser";
    rev    = "v1.1";
    sha256 = "1i38nrb28g1nzhcs0139arz8vvbnli9ryvdl657dqslb6ms1x0g2";
  };

  buildInputs = [ cmake boost gtest ];

  meta = with stdenv.lib; {
    homepage = https://github.com/KnairdA/SimpleParser/;
  };
}