about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-31 22:03:59 +0200
committerajs124 <git@ajs124.de>2022-04-03 16:14:12 +0100
commite4d66b08e959b4de4ed3eee6f0d72cf405633d00 (patch)
tree92d5fe70db098df6fa0a1204187c5bdd84a7670b /pkgs/applications/version-management
parent9717c7ba7e48fbad9a8fb73e5d243789358c83d6 (diff)
bitkeeper: remove after being marked broken for over two years
It was marked in commit e04772230b0c02819d52fac6fc7be8938d2f8314 by Franz Pletz on 2017-08-27 (commited on 2017-08-28)
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/bitkeeper/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/applications/version-management/bitkeeper/default.nix b/pkgs/applications/version-management/bitkeeper/default.nix
deleted file mode 100644
index c185a4fb759b5..0000000000000
--- a/pkgs/applications/version-management/bitkeeper/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ 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
-  };
-}