mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #51811 from veprbl/pr/cernlib_fix
cernlib: fix build
This commit is contained in:
commit
07b5b553c6
@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
|
||||
postPatch = ''
|
||||
substituteInPlace 2006/src/config/site.def \
|
||||
--replace "# define MakeCmd gmake" "# define MakeCmd make"
|
||||
substituteInPlace 2006/src/config/lnxLib.rules \
|
||||
--replace "# lib" "// lib"
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
@ -57,7 +59,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://cernlib.web.cern.ch;
|
||||
description = "Legacy collection of libraries and modules for data analysis in high energy physics";
|
||||
broken = stdenv.isDarwin;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
||||
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user