1 { lib, stdenv, fetchurl, cmake }:
3 stdenv.mkDerivation rec {
8 url = "http://hepmc.web.cern.ch/hepmc/releases/HepMC-${version}.tar.gz";
9 sha256 = "1pp89bs05nv60wjk1690ndwh4dsd5mk20bzsd4a2lklysdifvb6f";
12 nativeBuildInputs = [ cmake ];
15 "-Dmomentum:STRING=GEV"
20 description = "The HepMC package is an object oriented event record written in C++ for High Energy Physics Monte Carlo Generators";
21 license = licenses.lgpl21;
22 homepage = "http://hepmc.web.cern.ch/hepmc/";
23 platforms = platforms.unix;
24 maintainers = with maintainers; [ veprbl ];