mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4f88ceff49
Commit 093cc00cdd
sets the AR environment variable
by default, but this causes the jam Makefile to use the wrong command.
37 lines
810 B
Nix
37 lines
810 B
Nix
{ stdenv, fetchurl, yacc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jam-2.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://swarm.workshop.perforce.com/projects/perforce_software-jam/download/main/${name}.tar";
|
|
sha256 = "0j4r7xcjz15ksnnpjw56qi99q4lpjmx097pkwwkl1hq3hqml1zhn";
|
|
};
|
|
|
|
nativeBuildInputs = [ yacc ];
|
|
|
|
preConfigure = ''
|
|
unset AR
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make jam0
|
|
./jam0 -j$NIX_BUILD_CORES -sBINDIR=$out/bin install
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/doc/jam
|
|
cp *.html $out/doc/jam
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.perforce.com/resources/documentation/jam;
|
|
license = licenses.free;
|
|
description = "Just Another Make";
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|