python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / physics / hepmc2 / default.nix
blobe2ab42c418a09e0770ac1c215fa5a13b5aaa1736
1 { lib, stdenv, fetchurl, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "hepmc";
5   version = "2.06.11";
7   src = fetchurl {
8     url = "http://hepmc.web.cern.ch/hepmc/releases/HepMC-${version}.tar.gz";
9     sha256 = "1pp89bs05nv60wjk1690ndwh4dsd5mk20bzsd4a2lklysdifvb6f";
10   };
12   nativeBuildInputs = [ cmake ];
14   cmakeFlags = [
15     "-Dmomentum:STRING=GEV"
16     "-Dlength:STRING=MM"
17   ];
19   meta = with lib; {
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 ];
25   };