nixpkgs/pkgs/applications/version-management/cvs/default.nix

39 lines
990 B
Nix
Raw Normal View History

2018-04-12 05:13:25 +00:00
{ stdenv, fetchurl, fetchpatch, nano }:
stdenv.mkDerivation {
name = "cvs-1.12.13";
src = fetchurl {
url = mirror://savannah/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2;
sha256 = "0pjir8cwn0087mxszzbsi1gyfc6373vif96cw4q3m1x6p49kd1bq";
};
patches = [
./getcwd-chroot.patch
./CVE-2012-0804.patch
./CVE-2017-12836.patch
2018-04-12 05:13:25 +00:00
(fetchpatch {
url = "https://raw.githubusercontent.com/Homebrew/formula-patches/24118ec737c7/cvs/vasnprintf-high-sierra-fix.diff";
sha256 = "1ql6aaia7xkfq3vqhlw5bd2z2ywka82zk01njs1b2szn699liymg";
})
];
2016-11-22 12:53:33 +00:00
hardeningDisable = [ "fortify" "format" ];
2016-02-07 19:23:40 +00:00
preConfigure = ''
# Apply the Debian patches.
for p in "debian/patches/"*; do
echo "applying \`$p' ..."
patch --verbose -p1 < "$p"
done
'';
buildInputs = [ nano ];
meta = {
homepage = http://cvs.nongnu.org;
description = "Concurrent Versions System - a source control system";
platforms = stdenv.lib.platforms.all;
};
}