9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, perl, gperf, bison, groff
|
|
, pkg-config, libXft, pcre
|
|
, libtomcrypt, libtommath, lz4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitkeeper";
|
|
version = "7.3.1ce";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.bitkeeper.org/downloads/${version}/bk-${version}.src.tar.gz";
|
|
sha256 = "0l6jwvcg4s1q00vb01hdv58jgv03l8x5mhjl73cwgfiff80zx147";
|
|
};
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
perl gperf bison groff libXft
|
|
pcre libtomcrypt libtommath lz4
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace port/unix_platform.sh \
|
|
--replace /bin/rm rm
|
|
substituteInPlace ./undo.c \
|
|
--replace /bin/cat cat
|
|
'';
|
|
|
|
sourceRoot = "bk-${version}/src";
|
|
buildPhase = ''
|
|
make -j6 V=1 p
|
|
make image
|
|
'';
|
|
|
|
installPhase = ''
|
|
./utils/bk-* $out/bitkeeper
|
|
mkdir -p $out/bin
|
|
$out/bitkeeper/bk links $out/bin
|
|
chmod g-w $out
|
|
'';
|
|
|
|
meta = {
|
|
description = "A distributed version control system";
|
|
longDescription = ''
|
|
BitKeeper is a fast, enterprise-ready, distributed SCM that
|
|
scales up to very large projects and down to tiny ones.
|
|
'';
|
|
homepage = "https://www.bitkeeper.org/";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ wscott thoughtpolice ];
|
|
broken = true; # seems to fail on recent glibc versions
|
|
};
|
|
}
|