biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / cvs / default.nix
blob20a38f9f8e8cf7379367001677287b7b61df5a88
1 { lib, stdenv, fetchurl, fetchpatch, nano }:
3 stdenv.mkDerivation rec {
4   pname = "cvs";
5   version = "1.12.13";
7   src = fetchurl {
8     url = "mirror://savannah/cvs/source/feature/${version}/cvs-${version}.tar.bz2";
9     sha256 = "0pjir8cwn0087mxszzbsi1gyfc6373vif96cw4q3m1x6p49kd1bq";
10   };
12   patches = [
13     ./getcwd-chroot.patch
14     ./CVE-2012-0804.patch
15     ./CVE-2017-12836.patch
16     (fetchpatch {
17       url = "https://raw.githubusercontent.com/Homebrew/formula-patches/24118ec737c7/cvs/vasnprintf-high-sierra-fix.diff";
18       sha256 = "1ql6aaia7xkfq3vqhlw5bd2z2ywka82zk01njs1b2szn699liymg";
19     })
20   ];
22   hardeningDisable = [ "fortify" "format" ];
24   preConfigure = ''
25     # Apply the Debian patches.
26     for p in "debian/patches/"*; do
27       echo "applying \`$p' ..."
28       patch --verbose -p1 < "$p"
29     done
30   '';
32   configureFlags = [
33     "--with-editor=${nano}/bin/nano"
35     # Required for cross-compilation.
36     "cvs_cv_func_printf_ptr=yes"
37   ];
39   makeFlags = [
40     "AR=${stdenv.cc.targetPrefix}ar"
41   ];
43   env = lib.optionalAttrs (stdenv.isDarwin && stdenv.cc.isClang) {
44     NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
45   };
47   doCheck = false; # fails 1 of 1 tests
49   meta = with lib; {
50     homepage = "http://cvs.nongnu.org";
51     description = "Concurrent Versions System - a source control system";
52     license = licenses.gpl2Plus; # library is GPLv2, main is GPLv1
53     platforms = platforms.all;
54   };