mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
![aleksana](/assets/img/avatar_default.png)
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, nano }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cvs";
|
|
version = "1.12.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/cvs/source/feature/${version}/cvs-${version}.tar.bz2";
|
|
sha256 = "0pjir8cwn0087mxszzbsi1gyfc6373vif96cw4q3m1x6p49kd1bq";
|
|
};
|
|
|
|
patches = [
|
|
./getcwd-chroot.patch
|
|
./CVE-2012-0804.patch
|
|
./CVE-2017-12836.patch
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/Homebrew/formula-patches/24118ec737c7/cvs/vasnprintf-high-sierra-fix.diff";
|
|
sha256 = "1ql6aaia7xkfq3vqhlw5bd2z2ywka82zk01njs1b2szn699liymg";
|
|
})
|
|
];
|
|
|
|
hardeningDisable = [ "fortify" "format" ];
|
|
|
|
preConfigure = ''
|
|
# Apply the Debian patches.
|
|
for p in "debian/patches/"*; do
|
|
echo "applying \`$p' ..."
|
|
patch --verbose -p1 < "$p"
|
|
done
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-editor=${nano}/bin/nano"
|
|
|
|
# Required for cross-compilation.
|
|
"cvs_cv_func_printf_ptr=yes"
|
|
];
|
|
|
|
makeFlags = [
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
|
];
|
|
|
|
env = lib.optionalAttrs (stdenv.hostPlatform.isDarwin && stdenv.cc.isClang) {
|
|
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
|
|
};
|
|
|
|
doCheck = false; # fails 1 of 1 tests
|
|
|
|
meta = with lib; {
|
|
homepage = "http://cvs.nongnu.org";
|
|
description = "Concurrent Versions System - a source control system";
|
|
license = licenses.gpl2Plus; # library is GPLv2, main is GPLv1
|
|
platforms = platforms.all;
|
|
};
|
|
}
|